check if your session variable is set.

ie, lets say your session variable is called SessionID

<?php

    if (isset($HTTP_SESSION_VARS['SessionID']))
    {
        echo "SET <br>\n";
    }

?>

--

 Chris Lee
 Mediawaveonline.com

 ph. 250.377.1095
 ph. 250.376.2690
 fx. 250.554.1120

 [EMAIL PROTECTED]


"Michael Zornek" <[EMAIL PROTECTED]> wrote in message
news:a05001900b6bc8c348c90@[38.241.81.150]...
> I have a auth system in the works and if a session is going then they
> are "logged in".
>
> What's the best way to check to see if a session is currently in progress?
>
> Mike
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to