File "logout-20250814134825.php"

Full path: /home/humancap/cl.humancap.com.my/assessment/include/logout-20250814134825.php
File size: 251 B B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php
// Start the session
session_start();

// Unset the authenticated session variable
unset($_SESSION["authenticated"]);

// Destroy the session
session_destroy();

// Redirect the user back to the login page
header("Location: index.php");
exit;
?>