Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
share|improve this question
What does print_r($_COOKIE) show? – ceejayoz Jun 6 '11 at 17:31
1  
So are you doing $_COOKIE['SumbCookie'] on a subsequent request, or on the same request? – lonesomeday Jun 6 '11 at 17:31
Which browser are you testing this in? – Cole Jun 6 '11 at 17:32

1 Answer

up vote 7 down vote accepted

Try:

setcookie("SubmCookie",$refNumb, time()+3600*24,'/');
share|improve this answer
Oh you save my day! That was the path! You are right! Thank you so much! – DiegoP. Jun 6 '11 at 17:33
when cookie aren't read 99% of time users forgot the 4th param – yes123 Jun 6 '11 at 17:34
1  
Good thinking, but perhaps you could add an explanation of what the $path parameter does. – lonesomeday Jun 6 '11 at 17:37
@lone: this is not the point of the question. But if you need i can copy/paste it from php.net/setcookie – yes123 Jun 6 '11 at 17:38
@Diego: if this solved you please pick it as the answer – yes123 Jun 6 '11 at 20:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.