File "logout.php"

Full Path: /home/humancap/cl.humancap.com.my/assessment/cl-admin/logout.php
File size: 251 bytes
MIME-type: text/x-php
Charset: utf-8

<?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;
?>