Hi all!
I've got a button on all my web page that allow user to choose between 2 font size, style small and large. Their choice are put into a cookie so next time they came on the site, they'll not have to choose again.
But, if I set the cookie on the first page (index.php) and what to change the size of my font (so update the cookie value) on another page (like /php/somepage.php)... it seem that i can't access the cookie!
Here's the script i'm using
//Detect If User Have Cookie
if (!isset($HTTP_COOKIE_VARS['text'])) {
setcookie ("text", "11", time() + (3 *31536000));
}
Is there a special way to access the cookie from another page ???