Jump to content

can't seem to reset cookies


Druid

Recommended Posts

I have a value I store in cookies and a mysql db, which I allow members to modify. Problem is, the value in the DB gets updated but the cookie doesn't seem to want to change. I'm on windowsxp Apache 2 and php 5.

 

Here's what I have:

<?
** update db here***
setcookie("color", "", time()-3600);
setcookie("color", "", time()-3600, "/");

setcookie("color", $newvalue, time()+3600);
?>

 

The page which edits this value is in the http://www.blah.com/edit/ folder. Seems the cookie is reset, when I go to http://www.blah.com/ the change takes place. But if I go back to http://www.blah.com/edit/ it's still set to the previous value. Could someone lemme know what it'll take to update the value for the entire site?

Link to comment
https://forums.phpfreaks.com/topic/41673-cant-seem-to-reset-cookies/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.