61 lines
1.9 KiB
PHP
61 lines
1.9 KiB
PHP
<?php
|
|
include('config.php');
|
|
?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<link href="<?php echo $design; ?>/style.css" rel="stylesheet" title="Style" />
|
|
<title>Profil d'un utilisateur</title>
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
<a href="<?php echo $url_home; ?>"><img src="<?php echo $design; ?>/images/logo.png" alt="Espace Membre" /></a>
|
|
</div>
|
|
<div class="content">
|
|
<?php
|
|
//On verifie que lidentifiant de lutilisateur est defini
|
|
if(isset($_GET['id']))
|
|
{
|
|
$id = intval($_GET['id']);
|
|
//On verifie que lutilisateur existe
|
|
$dn = mysql_query('select username, email, avatar, signup_date from users where id="'.$id.'"');
|
|
if(mysql_num_rows($dn)>0)
|
|
{
|
|
$dnn = mysql_fetch_array($dn);
|
|
//On affiche les donnees de lutilisateur
|
|
?>
|
|
Voici le profil de "<?php echo htmlentities($dnn['username']); ?>" :
|
|
<table style="width:500px;">
|
|
<tr>
|
|
<td><?php
|
|
if($dnn['avatar']!='')
|
|
{
|
|
echo '<img src="'.htmlentities($dnn['avatar'], ENT_QUOTES, 'UTF-8').'" alt="Image Perso" style="max-width:100px;max-height:100px;" />';
|
|
}
|
|
else
|
|
{
|
|
echo 'Cet utilisateur n\'a pas d\'image perso.';
|
|
}
|
|
?></td>
|
|
<td class="left"><h1><?php echo htmlentities($dnn['username'], ENT_QUOTES, 'UTF-8'); ?></h1>
|
|
Email: <?php echo htmlentities($dnn['email'], ENT_QUOTES, 'UTF-8'); ?><br />
|
|
Cet utilisateur s'est inscrit le <?php echo date('d/m/Y',$dnn['signup_date']); ?></td>
|
|
</tr>
|
|
</table>
|
|
<?php
|
|
}
|
|
else
|
|
{
|
|
echo 'Cet utilisateur n\'existe pas.';
|
|
}
|
|
}
|
|
else
|
|
{
|
|
echo 'L\'identifiant de l\'utilisateur n\'est pas défini.';
|
|
}
|
|
?>
|
|
</div>
|
|
<div class="foot"><a href="users.php">Retour à la liste des utilisateurs</a> - <a href="http://www.supportduweb.com/">Support du Web</a></div>
|
|
</body>
|
|
</html>
|