On Feb 3, 2008 10:25 AM, Per Jessen <[EMAIL PROTECTED]> wrote:
> Ron Piggott wrote:
>
> > What is the command to reset a session variable --- essentially
> > deleting all of the values it contains?  Ron
> >
>
> I haven't checked, but how about unset() ?
>
>
> /Per Jessen, Zürich
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

unset($_SESSION);
or
$_SESSION = array();

-- 
-Casey

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to