version 4.2

compatible with PHP 5.4 and earlier
This commit is contained in:
Larry Lam
2019-01-25 16:41:41 -08:00
committed by GitHub
parent d987fc3d40
commit bbe5872691
26 changed files with 2207 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
<?php
session_start();
?>
<HTML>
<head>
<title>ADMIN - Logout</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<center>
<H2>Logout</H2>
<?php
// if the user is logged in, log them out
if ($_SESSION['VNSB']) {
unset($_SESSION['VNSB']);
echo "You are now logged out.";
echo "<br><br><em>Don't forget to close your brower when you are done!!!</em>";
// if the user isnt logged in, let them know that
} else {
echo "You haven't even logged in yet.";
}
?>
<p><a href="index.php">Home</a></p>
<p><a href="admin.php">Admin</a></p>
</center>
</body>
</html>