Are you sure that the cookie is not unset? You might have an old cookie with "/" as its path that you see now.

Andrew Wood wrote:

Can anyone fathom out why I can't get the setcookie function to delete a cookie?

I'm calling it with the same arguments as I used to set it originally, but with a null string value & an expiry time in the past but the cookie persistently remains in the browser.

This how I set it:
setcookie ("hhubpassword", md5($newpassword) , time() + 1209600, "/xchange/");


And this is how I'm trying to delete it:
setcookie ("hhubpassword", "", time() -3600, "/xchange/");

Thanks
Andrew


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



Reply via email to