This is a discussion on Re: Sessions within the PHP Language forums, part of the PHP Programming Forums category; Ken wrote (in part): > Yes, session_start() is called on each page. > > There are other session variables that ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Ken wrote (in part):
> Yes, session_start() is called on each page. > > There are other session variables that are working. > > Ken > At the top of your source, right after the session_start(), add the line: echo '<pre>';print_r($_SESSION);echo '<pre>'; This will show you what's in the SESSION array. This is the first step to debug your code. Ken (a different one) |