add logout.php
This commit is contained in:
parent
ff485f1d50
commit
99620a7fe0
|
@ -0,0 +1,11 @@
|
||||||
|
<?
|
||||||
|
session_start();
|
||||||
|
|
||||||
|
$_SESSION["uid"] = null;
|
||||||
|
$_SESSION["name"] = null;
|
||||||
|
|
||||||
|
session_destroy();
|
||||||
|
|
||||||
|
header("Location: tt-rss.php");
|
||||||
|
|
||||||
|
?>
|
Loading…
Reference in New Issue