-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathamigos.php
More file actions
36 lines (31 loc) · 1.04 KB
/
amigos.php
File metadata and controls
36 lines (31 loc) · 1.04 KB
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
<?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">Meus Amigos(<?php echo $numamigos; ?>)</br></br></div>
<?php
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?';
}
?></div>
</body>
</html>