Files
website-template/server/app-code/system/insecure_zone/php/logout.php
2024-06-26 16:50:09 +02: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;
?>