Linux. PHP5.

Maybe I'm doing something wrong, but I've tried both:

unset($_COOKIE['foo']);

And also

$_COOKIE['foo'] = '';

And neither of them seem to do anything. I can still see the cookie and
worse, the value if I do

foreach ($_COOKIE as $key => $val) echo "$key = $val";

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

Reply via email to