Re: [PHP] Can not get session value???

2002-04-03 Thread Miguel Cruz
On Thu, 4 Apr 2002, N.D. Andini wrote: > and on second file mysecond.php, I get value of those session to check > session value like below: Here add: session_start(); > print $ses_useid; > print $ses_usename; miguel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vis

Re: [PHP] Can not get session value???

2002-04-03 Thread eric.coleman
Yes, you have to call session_start() on every page you want to access/pass session variables Eric - Original Message - From: "Johnson, Kirk" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 03, 2002 10:22 AM Subject: RE: [PHP] Can not get sessi

RE: [PHP] Can not get session value???

2002-04-03 Thread Johnson, Kirk
Do you have a call to session_start() in the second file? You need this to access the session variables on the second page. Kirk > -Original Message- > From: N.D. Andini [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 02, 2002 3:20 AM > To: [EMAIL PROTECTED] > Subject: [PHP] Can not ge