Thanks,

So what does session_unset() do then?

Tim Winters
Creative Development Manager
Sampling Technologies Incorporated

1600 Bedford Highway, Suite 212
Bedford, Nova Scotia
B4A 1E8
www.samplingtechnologies.com
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Office: 902 450 5500
Cell: 902 430 8498
Fax:: 902 484 7115


-----Original Message-----
From: CPT John W. Holmes [mailto:[EMAIL PROTECTED] 
Sent: August 19, 2003 5:11 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: [PHP] deleting session variables

From: "Tim Winters" <[EMAIL PROTECTED]>
> Is there a way to wipe out all previous session variables with one
> command?

With register_globals OFF:

$_SESSION = array();

If register_globals is ON and you want to get rid of $val1, $val2,
$val3,
etc... then:

foreach($_SESSION as $key => $value)
{ unset($$key); }

---John Holmes...


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

Reply via email to