up vote 0 down vote favorite
share [g+] share [fb]

If I write the following code:

session_start();
$_SESSION['user_id']='daniel';

the variable stays fine as long as I'm on the page on which it was created, and the second I try to call $_SESSION['user_id'] from another page, I don't get a response. Can anyone tell me what mistake I'm making?

link|improve this question

62% accept rate
feedback

4 Answers

up vote 13 down vote accepted

You should be using session_start() on every page you want to use sessions on. Are you?

link|improve this answer
no. Should I be doing this? – daniel Jun 23 '09 at 12:16
3  
Yes, you should. – Vinko Vrsalovic Jun 23 '09 at 12:17
@daniel - yes. It calls up the session from storage. – Aiden Bell Jun 23 '09 at 12:17
thanks guys. checks out. – daniel Jun 23 '09 at 12:19
yes. you should really read the section about sessions in the manual before starting to code. – Philippe Gerber Jun 23 '09 at 12:19
show 2 more comments
feedback

As long as:

  • You are doing session_start() on the other page. Note: you don't make this call once. You do it on every page that wants to access the session information;
  • The other page can see your cookie from this site (ie sufficiently similar domain); and
  • The other page is running on the same server.

then it can see it. Construct a simple test case and verify this and then work out why what you're doing is different.

link|improve this answer
feedback

You must have session_start() on every page

link|improve this answer
feedback

Ensure that the PHPSESSID cookie is actually being set, and that no headers / content have been sent before you call session_start()

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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