>>>> I'm registering if people are logged in. The login page is situated in
>> the
>>>> mainFrame.
>>>> Now in my leftFrame I want to put the status (i.e. "you are logged in as
>>>> .....")
>>>> 
>>>> When people are succesfully logged in I register their name as
>>>> session_register('session_loginname');
>>>> I then refresh the leftFrame.
>>>> In the page to be displayed in the leftFrame  I put:
>>>> 

You also need to do:

session_start();

in this leftFrame page (URL)...

Otherwise, the leftFrame page (URL) has no idea that you are using sessions.

>>>> <?php if (!isset($session_loginname))
>>>> {
>>>> echo "you are not a member";
>>>> }
>>>> else
>>>> {
>>>> echo "login: $session_loginname";
>>>> }
>>>> ?>

-- 
Like Music?  http://l-i-e.com/artists.htm


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to