9 lines
151 B
PHP
9 lines
151 B
PHP
<?php
|
|
$PAGE_NAME = "Logging out...";
|
|
require_once __DIR__ . "/../includes/prereqs.php";
|
|
|
|
session_destroy();
|
|
|
|
header('Location: /');
|
|
?>
|