File "logout.php"
Full Path: /home/ccipcixf/public_html/miportal/logout.php
File size: 186 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
session_start();
session_unset(); // Unset all session variables
session_destroy(); // Destroy the session
header("Location: index.php"); // Redirect to login page
exit;
?>