Version 2007-11-04
This commit is contained in:
parent
4909921671
commit
ebc73c5744
377 changed files with 5163 additions and 2495 deletions
13
logout.php
Normal file
13
logout.php
Normal 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.php");
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue