17 lines
179 B
PHP
17 lines
179 B
PHP
|
<?php
|
||
|
|
||
|
session_start();
|
||
|
|
||
|
unset($_SESSION['uid']);
|
||
|
|
||
|
?>
|
||
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta http-equiv="refresh" content="3; /">
|
||
|
</head>
|
||
|
<body>
|
||
|
<p>Signed out.</p>
|
||
|
</body>
|
||
|
</html>
|