My configuration file included on each page has this.
session_name('fourptLogin');
session_set_cookie_params(2*7*24*60*60);
session_start();
My login form currently has,
<label><input name="rememberMe" id="rememberMe" type="checkbox" value="1" /> Remember me</label>
In my PHP login script I have this
$_POST['rememberMe'] = (int)$_POST['rememberMe'];
// if no errors //
setcookie('fourptRemember',$_POST['rememberMe']);
And lastly I have this...
if($_SESSION['id'] && !isset($_COOKIE['fourptRemember']) && !$_SESSION['rememberMe'])
{
// If you are logged in, but you don't have the rememberMe cookie (browser restart)
// and you have not checked the rememberMe checkbox:
$_SESSION = array();
session_destroy();
// Destroy the session
}
I'm having trouble testing to make sure the remember me is working. I don't think I have it setup correctly and was hoping to see if there were any errors in my code.