summaryrefslogtreecommitdiff
path: root/logout.php
blob: d4543399c3bdc8fc767b5f35f06bfd814b63eb58 (plain)
1
2
3
4
5
6
7
<?php
// effet du bouton déconnexion
session_start();
$_SESSION['motdepasse'] = 0;
session_destroy();
header('Location: index.php');
?>