"Angelo Zanetti" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi,
>
> Im running a win2k with apache and PHP 4.3.4 and I have gone through
> the installation readme for PHP. I have copied the necessary files to
> the correct directories. I have also set register_globals= Off (default)
> I have set my session path (it exists).
>
> Now my problem is that I cant get my sessions to work at all. I have
> tried everything and no luck.
> Ok here is what I do:
>
> $_SESSION['login']="true";
>
> if (session_is_registered($_SESSION['login']))
> echo("seesion is reg");
> else
> echo("seesion not reg");
>

Hi Angelo,

where's your session_start()? Also you can use isset() instead of
session_is_registered():

if (isset($_SESSION['login']))

Regards, Torsten Roehr

> I have not used the session_register function as the manual says the
> following:
>
> If you want your script to work regardless of register_globals, you
> need to instead use the $_SESSION array as $_SESSION entries are
> automatically registered.
>
> I seriously dont know what else to try or do. If you think I've missed
> something then please help.
>
> Thanks in advance

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

Reply via email to