9 lines
105 B
PHP
9 lines
105 B
PHP
<?php
|
|
/*
|
|
* deconnexion.php
|
|
*/
|
|
session_start();
|
|
session_unset();
|
|
header("location:index.php");
|
|
exit();
|