Hi,
I'm storing a cookie using the code
setcookie("cookie1", $uid, time()+2592000);
setcookie("cookie2", $saltedpw, time()+2592000);
For some reason when I use the code:
print_r($_COOKIE);
In a folder off the root it displays the cookies I've stored but when I attempt it in the root folder, no cookies are shown apart from the session id. Could anyone advise me why this is happening?
Is it a host problem? anything I can sort out?
Any help will be most appreciated.
Thanks