Okay, for some reason, my cookies will not reset.
I'm trying to learn cookies, so I set a cookie like so:
setcookie ("fontcolor", $fontcolor, time()+ 3600);
which works fine, but when I want to change the font color, it wont allow me, it keeps the same old value:
if (isset($fontcolor)) setcookie ("fontcolor", $fontcolor, $time()+3600");
I know the variable isnt the same because I see it being redefined,
http://""".php?fontcolor=blue
am I doing this right? if so, what could be the problem?