Hey all --
I'm trying to figure out what I'm doing wrong with some cookies I set on my web site. The cookies in question set OK and are viewable in the browsers cookie list but when I do this:
print_r($_COOKIE);
...they arent shown. I'm setting the cookie like this:
setcookie("cookie_name","$vaue",time()+66600000);
and checking for it in my script like:
if (isset($_COOKIE['cookie_name'])) {
do this...
}
... and like I said, I can view that the cookie was set succsessfuly using the cookie viewer in my browser but my 'isset' calls to it fail.
Anyone have any advice on what I'm missing or something else I can try?
Thanks