Jump to content

[SOLVED] I can't get rid of this $_COOKIE!!!


Recommended Posts

I set this cookie and need to later destoy it.

 

 

<?

I SET IT WITH THIS...

$expire=time()+60*60*24*30;

setcookie("pi", "PI-1234456832", "$expire"); // Works great

I AM TRYING TO KILL IT WITH THIS...

setcookie("pi", "", time()-3600); // Doesn't work

?>

 

Please help me cookie monster!

Link to comment
https://forums.phpfreaks.com/topic/144941-solved-i-cant-get-rid-of-this-_cookie/
Share on other sites

Localhost or via an online webserver?

 

Try setting it to 2 days ago and see if that works. Timezones can have this effect of not killing the cookie.

 

If that fails setcookie use the path and domain parameters when setting and destroying the cookie.

Someone on http://us3.php.net/setcookie said:

 

I found out recently that assigning FALSE to a cookie will destroy it.

 

I thought it might interest some of you.

look at that link anyways for some ideas

 

How I assign "False" to a cookie named "pi"?

In some browsers, you can have problems if you don't set the path for the cookie.  If it's for the entire site, then the path should be set as '/'. Also, why not be extra safe with the time and make it 30 days in the past.

 

So I'd suggest:

 

setcookie("pi", "PI-1234456832", $expire, "/");

 

and to clear

 

setcookie("pi", "PI-1234456832", -2592000, "/"); 

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.