Posted by Rik on 08/16/07 11:12
On Thu, 16 Aug 2007 11:58:18 +0200, Rtenboer@gmail.com
<Rtenboer@gmail.com> wrote:
> Hello to all again :)
>
> i have a problem with a session
> this is my index page what will check if you are logged in or not if
> you are logged in it should be displaying the session username
> <?php
> if(!isset($_SESSION["logged"]))
> {
> well once i try to login it will redirect me to the index.php what is
> correct
> but now its should tell me on the index page what user is logged but
> that isn't happening
On _every_ request that uses a session you have to call session_start()
before anything else. If you don't, no session is assumed & no $_SESSION
array is filled.
--
Rik Wasmus
[Back to original message]
|