Permalink
Cannot retrieve contributors at this time
12 lines (12 sloc)
173 Bytes
<html> | |
<head> | |
<title>Logout Handler</title> | |
</head> | |
<body> | |
<?php | |
session_start(); | |
session_destroy(); | |
header("location: home_page.php"); | |
?> | |
</body> | |
</html> |