2009/1/20 clive <clive_li...@immigrationunit.com>

> further to my last email,
>
> the bit of code that checks if the person is logged in looks something like
> this:
>
> if ( isset ( $_SESSION['loggedin']  )  )   {
>   //check some other session variables
>
> } else {
>
>   //log reason for logging the user out
>   //redirect to login page
>
> }

Is the session completly destroyed? Try

} else {
 print_r($_SESSION);
}

Reply via email to