Files
ma/src/server/cyberhex-code/system/insecure_zone/php/logout.php
jakani24 ecfa6234d7 update
2024-01-14 15:43:18 +01:00

12 lines
195 B
PHP

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