Files
cs157AOnlineBanking/f8l_exception/logout.php
joeyajames e211bb797e Working website, Rev 1.
Register user, login, chg pw, reset pw, view accounts, all work. Can't
create a new account yet.
2014-11-11 20:20:05 -08:00

22 lines
575 B
PHP

<?php
session_start(); ?>
<!-- PVault | Logout -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<?php
// Unset all of the session variables, and Destroy the session, then redirect to home
session_unset();
session_destroy();
?><script language="JavaScript">window.location = "index.php";</script><?php
include 'includes/inc_text_menu.php';
?>
</body>
</html>