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
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'];

 

 

Link to comment
Share on other sites

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.