Jump to content

insane cookie!


dreamwest

Recommended Posts

Im going round in circles trying to set a simple cookie, ive done this before but i cant get it to work. Can someone see my error??

 

$expire=time()+60*60*24*30*30;
setcookie("turbo", "on", $expire, "/");
echo "Completed! <a href=\"/\">Click here to test</a>";

if(!$_COOKIE['turbo']){
  echo 'its not there';
}elseif($_COOKIE['turbo'] == "on" ){
  echo 'its on';
}

Link to comment
https://forums.phpfreaks.com/topic/163876-insane-cookie/
Share on other sites

Works fine when I test it (although I'm getting an expected "undefined index" notice when $_COOKIE['turbo'] doesn't exist). Just remember that the cookie is first available on the next page load.

 

Thats why i added the

echo "Completed! <a href=\"/\">Click here to test</a>";

part

 

Ive tested it on 3 browser and no cookie is set, although i can set cookies with javascript

 

...maybe an elusive bug....

 

Link to comment
https://forums.phpfreaks.com/topic/163876-insane-cookie/#findComment-864693
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.