removing session vars within same page request

This commit is contained in:
Dan Buch 2010-12-31 20:35:25 -05:00
parent f0c5b3b756
commit 38cef44836

View File

@ -20,6 +20,8 @@ mkheader("sessions!", "#aea");
<?php
if ($_POST['destroy-session'] == "yes") {
session_destroy();
$_SESSION = array();
?>
<p>Successfully destroyed session</p>
<a href="<?php echo $_SERVER['PHP_SELF']; ?>">clear this</a>