vote up 0 vote down star

Hi,

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?

flag

75% accept rate

4 Answers

vote up 13 vote down check

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

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

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|flag
vote up 1 vote down

You must have session_start() on every page

link|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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