File "logout.php"
Full path: /home/humancap/cl.humancap.com.my/assessment/include/select2/logout.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;
?>