I've created a back end log in for my site, but for some reason, I can't get the "remember me" function to work properly. It saves the cookies with username password and ID number, but for some reason, when I close the browser and try to access the admin dashboard again, it prompts me to log in.
Here's the code for both the log in page and the Dashboard.
Log In:
<?php
session_start();
if(isset($_SESSION["manager"])){
header("location:index.php");
exit();
}
?>
<?php
//parse log in form if user has filled it out and pressed "Log In"
if(isset($_POST["username"]) && isset($_POST["password"])){
$manager=preg_replace('#[^A-Za-z0-9]#i', '' ,$_POST["username"]); //filter everything but letters and numbers
$password=preg_replace('#[^A-Za-z0-9]#i', '' ,$_POST["password"]); //filter everything but letters and numbers
include "../storescripts/connect_to_mysql.php";
$sql = mysql_query("SELECT id FROM admin WHERE username='$manager' AND password='$password' LIMIT 1");
$existCount=mysql_num_rows($sql);
if($existCount==1){
while($row=mysql_fetch_array($sql)){
$id=$row["id"];
}
$_SESSION["id"]=$id;
$_SESSION["manager"]=$manager;
$_SESSION["password"]=$password;
if(isset($_POST["stay_logged_in"]))
{
$expire=time()+60*60*24*30;
setcookie("manager", "$manager", $expire);
setcookie("password", "$password", $expire);
setcookie("id", "$id", $expire);
}
header("location: index.php");
exit();
}else{
echo 'The provided information is incorrect, try again <a href="index.php">Click Here</a>';
exit();
}
}
?>
Dashboard:
<?php
//session validation
session_start();
if(isset($_COOKIE["manager"]) && isset($_COOKIE["password"]))
{
$_SESSION["manager"]=$_COOKIE["manager"];
$_SESSION["password"]=$_COOKIE["password"];
$_SESSION["id"]=$_COOKIE["id"];
}
if (!isset($_SESSION["manager"])){
header("location:admin_login.php");
exit();
}
$managerID=preg_replace('#[^A-Za-z0-9]#i', '' ,$_SESSION["id"]); //filter everything but letters and numbers
$manager=preg_replace('#[^A-Za-z0-9]#i', '' ,$_SESSION["manager"]); //filter everything but letters and numbers
$password=preg_replace('#[^A-Za-z0-9]#i', '' ,$_SESSION["password"]); //filter everything but letters and numbers
include "../storescripts/connect_to_mysql.php";
$sql = mysql_query("SELECT username FROM admin WHERE username='$manager' AND password='$password' LIMIT 1");
$existCount=mysql_num_rows($sql);
if($existCount==0){
echo "Your login session data is not on record in the database.";
exit();
}
?>
<?php
//log out
if(isset($_POST["log_out"]))
{
setcookie("manager", "", time()-3600);
setcookie("password", "", time()-3600);
setcookie("id", "", time()-3600);
session_destroy();
header("location:log_out.php");
}
?>