First code received by Master Leon

This commit is contained in:
nemunaire 2007-03-31 12:00:00 +02:00
commit 4230eb6922
330 changed files with 15543 additions and 0 deletions

13
logout.php Normal file
View file

@ -0,0 +1,13 @@
<?php
// On appelle la session
session_start();
// On écrase le tableau de session
$_SESSION = array();
unset($_SESSION);
// On détruit la session
session_destroy();
@header("Location: index.html");
?>