Simple logout script for eventual user system

This commit is contained in:
David Todd 2013-01-08 17:09:50 -05:00
parent 8b569a1a15
commit 7661b3c133
1 changed files with 14 additions and 0 deletions

14
logout.php Normal file
View File

@ -0,0 +1,14 @@
<?php
session_start();
if(!isset($_SERVER['HTTP_REFERER']) || $_SERVER['HTTP_REFERER'] == null || $_SERVER['HTTP_REFERER'] == '') $_SERVER['HTTP_REFERER'] = "index.php";
if(empty($_GET['token']) || $_GET['token'] != $_SESSION['token'])
{
header("location:".$_SERVER['HTTP_REFERER']);
}
session_unset();
session_destroy();
header("location:".$_SERVER['HTTP_REFERER']);
?>