loginpagefoo/logout.php
2021-01-08 17:31:11 +01:00

16 lines
243 B
PHP

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