query('SET NAMES UTF8'); if (isset($_POST['ID'])) { $_SESSION['ID'] = $_POST['ID']; } if (!isset($_SESSION['ID'])) { header("Status: 301 Moved Permanently", false, 301); header("Location: index.html"); exit(); } ?> Laboratoire Supinfo des Technologies Microsoft
Background query('SELECT id FROM users'); $trouver = false; while ($result = $sql->fetch()) { if ($result['id'] == $_SESSION['ID']) { $trouver = true; } } if (!$trouver) { echo '
Tu ne fais pas parti du Laboratoire Microsoft d\'Orléans
Allez, oust ! Du balais :P

Retour à l\'acceuil
'; mysql_close(); exit(); } ?>