>> function clear_orderinfo() {
>>   global $_SESSION;
>>   unset($_SESSION["orderinfo"]);
>>  }
>>
>> However this function doesnt seem to work and the session remains
>> active, is
>> there another way to clear a session?

I'm not triffically experienced, but I do have notes on the subject.
You're wanting to clear the whole session, right?

$_SESSION=array();
session_destroy();

For specific variables, try assigning FALSE to it
($_SESSION['name']=FALSE; or 'unset' works for versions >=4.2.2. Otherwise
use session_unregister. For me under 4.1.2 I had to set to null.

HTH
J



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

Reply via email to