2021-05-28 10:56:04 +02:00

9 lines
105 B
PHP

<?php
/*
* deconnexion.php
*/
session_start();
session_unset();
header("location:index.php");
exit();