add logout.php

This commit is contained in:
Andrew Dolgov 2005-11-18 06:40:57 +01:00
parent ff485f1d50
commit 99620a7fe0
1 changed files with 11 additions and 0 deletions

11
logout.php Normal file
View File

@ -0,0 +1,11 @@
<?
session_start();
$_SESSION["uid"] = null;
$_SESSION["name"] = null;
session_destroy();
header("Location: tt-rss.php");
?>