Jump to content

See COOKIE value once it's set


djones

Recommended Posts

How come this does not work on initial page load? I have to refresh the page to see the value. How do I get it to show the cookie value on the initial page load. My shopping cart is not loading the users items correctly.

 

setcookie("test", "bob", time() + 3600000, '/');
echo $_COOKIE['test'];

Link to comment
https://forums.phpfreaks.com/topic/90848-see-cookie-value-once-its-set/
Share on other sites

Cookies are only sent from the browser to the server when a page is requested. So, like the php manual states, the $_COOKIE variable won't be set until the next page load.

 

You can "fake" this operation by directly setting the $_COOKIE variable in your code (if the browser does not accept the cookie or return it back to the server, this method will make it look like the cookie is set, when in fact it is not.)

 

setcookie("test", "bob", time() + 3600000, '/');
$_COOKIE['test'] = "bob";
echo $_COOKIE['test'];

 

 

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.