GameSharingSite/logout.php
2023-08-09 16:47:52 -06:00

14 lines
223 B
PHP

<?php
// Initialize the session
session_start();
// Unset all of the session variables
$_SESSION = array();
// Destroy the session.
session_destroy();
// Redirect to login page
header("location: login.php");
exit;
?>