This commit is contained in:
jakani24
2024-01-14 15:43:18 +01:00
parent 2131d6b725
commit ecfa6234d7
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<?php
// Initialize the session
session_start();
// Unset all of the session variables
$_SESSION = array();
// Destroy the session.
session_destroy();
header("location: /login.php");
exit;
?>