-
Notifications
You must be signed in to change notification settings - Fork 0
/
exibir.php
60 lines (57 loc) · 2.06 KB
/
exibir.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php include('includes/header.php');?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>EducationLife - Amigos</title>
<link href="stylesheets/style.css" rel="stylesheet" type="text/css" />
<!--[if lte IE 8]>
<script src="js/html5.js" type="text/javascript"></script>
<![endif]-->
</head>
<body>
<?php include('includes/toolbar.php'); ?>
<?php include('includes/amigos.php');?>
<div id="amigos">
<div class="supertitulo"><?php if(isset($_GET['uid']) and (int)$_GET['uid']){
echo 'Meus Amigos ';
}elseif(isset($_GET['cid']) and (int)$_GET['cid']){
echo'Membros da Instituição';
}else{
header('location: ./');
}
?></br></br></div>
<?php
if(isset($_GET['uid']) and (int)$_GET['uid']){if($numamigos>0){
while($resamigo=$selamigo->fetch(PDO::FETCH_ASSOC)){
echo'<div class="show"><a href="perfil.php?uid='.$resamigo['id'].'">
<img src="uploads/usuario/'.$resamigo['imagem'].'" width="175" height="150" /></br>
<p align="center"><b>'.$resamigo['nome'].'</b></p></a></div>
';
}
}
else{
echo'Ops! Nenhum amigo?';
}
}else if(isset($_GET['cid']) and (int)$_GET['cid']){
$membros=DB::getConn()->prepare("SELECT de FROM membros WHERE para=?");
$membros->execute(array($idExtrangeiroInst));
if($membros->rowCount()<>0){
while($resmembros=$membros->fetch(PDO::FETCH_ASSOC)){
$informacoes=DB::getConn()->prepare("SELECT * FROM usuarios WHERE id=?");
$informacoes->execute(array($resmembros['de']));
$resultinforma=$informacoes->fetch(PDO::FETCH_ASSOC);
echo'
<div class="show"><a href="perfil.php?uid='.$resultinforma['id'].'">
<img src="uploads/usuario/'.$resultinforma['imagem'].'" width="175" height="150" /></br>
<p align="center"><b>'.$resultinforma['nome'].'</b></p></a></div>
';
}
}
else{
echo'Ops! Nenhum membro! Adicione agora!';
}
}
?></div>
</body>
</html>