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