I'va faced up with a problem when I uploaded my codes to a server...
This is what my problem is...
( This setting were good enough on LAN )
when a sendin a cookie with such a code like
(http://localhost/project1/pp.php)
setcookie ("a","value",time()+3600);
,I was able to send/read like
print $a;//-->Returns value( as you know 😛 )
but when I moved my project to a remote server like
http://355.355.355.355/project1/pp.php
I lost my control on cookies..
I 've checked that I'm now able to send cookie but can not read a value from it...
could anyone can help me for handling this problem...