16 lines
235 B
PHP
16 lines
235 B
PHP
|
|
<html>
|
|
<head>
|
|
<title>Logout</title>
|
|
<meta http-equiv="refresh" content="3; URL=/">
|
|
</head>
|
|
<body>
|
|
<?php
|
|
session_start();
|
|
session_destroy();
|
|
|
|
echo "Logout. Session is now destroyed. Now lets go to the start page.";
|
|
|
|
?>
|
|
</body>
|
|
</html>
|