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 61 62 63
| <?php
session_start();
if(empty($_SESSION['pseudo']))
header("location :index.php");
$bdd = new PDO('mysql:host=****;dbname=****','****','****');
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Methalab</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/png" href="images/favicon.ico" />
</head>
<body>
<div id="page">
<header>
<?php include('espace_membre.php'); ?>
<a href="index.php"> <img src="images/banniere.png" alt="banniere" id="banniere"> </a>
</header>
<?php
include('commun_nav.php');
?>
<table>
<caption>Liste des Membres</caption>
<tr>
<th>Pseudo</th>
<th>E-mail</th>
<th>Date d'inscription</th>
</tr>
<?php
$reponse = $bdd->query('SELECT * FROM utilisateurs' or die(mysql_errors()));
while($bdd = mysql_fetch_array($reponse));
{
?>
<tr>
<td class="left"><?php echo $bdd['pseudo']; ?></td>
<td class="left"><?php echo $bdd['mail']; ?></a></td>
<td class="left"><?php echo $bdd['date_inscription']; ?></td>
</tr>
<?php
}
?>
<?php
include('footer.php');
?>
</div>
</body>
</html> |