Ross Hulford wrote:
Is there a single bit of code for scrubbing all the cookies or do I have to do setcookie ("name, "") for all of them??


foreach($_COOKIE as $name => $value) { setcookie($name, '', time() - 36000); }

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



Reply via email to