Re: [PHP] Session Varaible Problem

2002-03-22 Thread Randy Phillips
> > Are you calling session_start() on the subsequent pages you want to be > part of the session? No I was not. That was the problem. Thanks Rasmus. -- Rp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Session Varaible Problem

2002-03-21 Thread Erik Price
Have you made sure that the correct values are even being loaded into the session variable containers? IOW, try echo $id; echo $first_name; to make sure that there is actually any value in those variables. Erik On Thursday, March 21, 2002, at 12:22 PM, Randy Phillips wrote: > Hi, > > I

Re: [PHP] Session Varaible Problem

2002-03-21 Thread Rasmus Lerdorf
Are you calling session_start() on the subsequent pages you want to be part of the session? On Thu, 21 Mar 2002, Randy Phillips wrote: > Hi, > > I have tried every example of creating a session variable I could find on > php.net and have had the same results with all of them. The session > varia

[PHP] Session Varaible Problem

2002-03-21 Thread Randy Phillips
Hi, I have tried every example of creating a session variable I could find on php.net and have had the same results with all of them. The session variables get set on the initial page but that's the only place I can access them. I am new to php so I'm sure I have just overlooked something. Here