cookies in firefox
Moderator: General Moderators
cookies in firefox
hi, I'm writing a simple content managment system and i wanted to implement session control, when i finally got it to work it would only work in IE and not in firefox, even just using "setcookie()" to make a cookie it would save the cookie to my computer but it would not be availible on any other pages. What could be the problem here?
Re: re
Snoop your http traffic using httpfiddler and look at whether the cookie is being passed to the server.
+
print_r ($_COOKIE); will list all the cookies that are being passed to a script.
+
print_r ($_COOKIE); will list all the cookies that are being passed to a script.
yshaf13 wrote:not only is it set to accept cookies, i can even view the cookies that it accepted through the options=>privacy box and the necessary cookies are there but when i try to access them with a script it doesn't work.