Pringle, Ron scribeva in 06/03/2007 16:26:
> After a successful submission, I want to destroy all the session variables
Or actually you want to unset them:
foreach($_SESSION as $k => $v) {
unset($_SESSION[$k]);
}
If you want to keep the session, just keep it - no need to destroy or
unset the session itself.
.k