if you dont specify an expiration time, the cookie
will hang around in memory until the browser is
closed... even if it's an empty cookie. (AFAIK)

if you really want it deleted, when the user "logs out"
setcookie("membership", "", time()-1);

that'll set the expire time to one second in the past,
which (in theory :) will delete the cookie ASAP.


> -----Original Message-----
> From: david jarvis [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, July 11, 2001 12:38 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Wierd cookie behiavor
> 
> 
> I have a logout page that sends this cookie
> 
> setcookie("membership")
> 
> So that "membership" shoud be empty.  However, if you login so that the 
> cookie membership is created, and then try to logout without restarting 
> the browser, it wont delete the cookie.  But if you restart the browser 
> and try to logout, it will work fine
> 
> any ideas?
> 
> -David
> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to