Hi All,
I am setting cookies with:
setcookie("cookie1", "a@b.com", mktime(12, 00, 00, 12, 31, 2005));
setcookie("cookie2", "b@a.com", mktime(00, 00, 00, 12, 31, 2005));
I am setting these values from a page in the /users/ directory. Now, when I try and access these cookies using $cookie1 or $cookie2 from anywhere OUTSIDE of the /users/ directory, it returns a blank string. It only returns the values when I'm in the /users/ dir.
Can someone please help me make them global to the site?
Thanks.