Currently I have been testing variables on $_SESSION, and if isset() returns false then assume the session has timed out to show a login page.
session_start();
if (isset($_POST['login'])):
// Process login credentials
$_SESSION['account'] = Array('user'=>'username');
endif;
if (! isset($_SESSION['account'])):
// User not logged in, show login page
else:
// User is logged in, show account page
endif;
However a user has recently reported that the account page was blank. I assume no session data was available because my code above is flawed somehow. Could someone point me in the right direction to correctly test if a session has timed out in PHP?
$_SESSION['account']variable? or may be it doesn't contains the expected value? – linuxeasy Aug 8 '11 at 13:19$_SESSION['account'] = Array();(although it should later be populated with account info, maybe that didn't happen). Is the rest of the above code fairly robust then? – Tak Aug 8 '11 at 13:26