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");
}
?>
link|improve this question
2  
It is never a good idea to store password in cookies. Also - why do you need password in session!? Also - read about sql injections. – zerkms Aug 11 '11 at 2:03
Also if you are going to use that ID in your code later on, i would suggest you use global variable instead. Cookies can be manipulated – Bojan Kogoj Aug 11 '11 at 2:10
where would I store a password for automatic log in functionality other than a cookie? – Dangerous Dave Aug 11 '11 at 2:11
Dangerous Dave - it's ironic how that adjective relates to your code. – ilia choly Aug 11 '11 at 2:13
2  
@DangerousDave You don't store the password at all. Instead, use some kind of token. There's plenty of information on doing this out there if you search – Phil Aug 11 '11 at 2:13
show 4 more comments
feedback

1 Answer

Is one page on a subdomain and the other not? Or are you switching from a url with www and then without?

If so try this:

setcookie("manager", "$manager", $expire, ".yoursite.com"); 
setcookie("password", "$password", $expire, ".yoursite.com"); 
setcookie("id", "$id", $expire, ".yoursite.com");

Make sure you have the period before your domain name.

link|improve this answer
both of them are on the same subdomain. – Dangerous Dave Aug 11 '11 at 13:16
I tried what you suggested with no luck. – Dangerous Dave Aug 11 '11 at 14:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.