My PHP is unable to read a cookie like this:
1010081-COP-9-20-20110606172032
echo $_COOKIE["SubmCookie"];
It just returns empty...
How is that possible?
This is the way how I set the Cookie:
setcookie("SubmCookie",$refNumb, time()+3600*24);
|
Try:
|
|||||||||||||
|
print_r($_COOKIE)show? – ceejayoz Jun 6 '11 at 17:31$_COOKIE['SumbCookie']on a subsequent request, or on the same request? – lonesomeday Jun 6 '11 at 17:31