Files
cmss-projet/forum-project/logout.php
2025-11-01 16:42:38 +01:00

10 lines
118 B
PHP

<?php
session_start();
$_SESSION = [];
session_unset();
session_destroy();
header("Location: login.php");
exit();
?>