mirror of
https://github.com/CodeninjasWS/GameSharingSite.git
synced 2024-11-27 09:55:41 -05:00
14 lines
223 B
PHP
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;
|
|
?>
|