I've added the set cookie code to the login file. The form is a separate file.
This login works great until I try to set cookies.... then, no matter what I put in the header location, I get a blank page after login.... no error message, just blank and the status bar says 'Done'. If I block out the set cookie code, and the 2 closing brackets at the bottom, everything works fine.
Since I'm not getting an error, there must be something fairly simple that I'm missing. I've tried so many combos of things, I don't know what else to try.
Hopefully, someone will see where I'm going wrong and be able to point me in the right direction.
Here's the code:
Code:
<?php
//Start session
session_start();
if(isset($_COOKIE['cookname']) && isset($_COOKIE['cookpass'])){
$_SESSION['login'] = $_COOKIE['cookname'];
$_SESSION['password'] = $_COOKIE['cookpass'];
header("Location: ". $_SERVER['PHP_SELF']); /* no matter what header location I use, I end up with a blank screen after login*/
exit;
if(isset($_POST['rememberme'])){
setcookie("cookname", $_SESSION['login'], time()+60*60*24*100, "/");
setcookie("cookpass", $_SESSION['password'], time()+60*60*24*100, "/");
//Include database connection details
require_once('dbdetails.php');
//Array to store validation errors
$errmsg_arr = array();
//Validation error flag
$errflag = false;
//Connect to mysql server
$link = mysql_connect(DB_HOST, DB_USER, DB_PASSWORD);
if(!$link) {
die('Failed to connect to server: ' . mysql_error());
}
//Select database
$db = mysql_select_db(DB_DATABASE);
if(!$db) {
die("Unable to select database");
}
//Function to sanitize values received from the form. Prevents SQL injection
function clean($str) {
$str = @trim($str);
if(get_magic_quotes_gpc()) {
$str = stripslashes($str);
}
return mysql_real_escape_string($str);
}
//Sanitize the POST values
$login = clean($_POST['login']);
$password = clean($_POST['password']);
//Input Validations
if($login == '') {
$errmsg_arr[] = 'Login ID missing';
$errflag = true;
}
if($password == '') {
$errmsg_arr[] = 'Password missing';
$errflag = true;
}
//If there are input validations, redirect back to the login form
if($errflag) {
$_SESSION['ERRMSG_ARR'] = $errmsg_arr;
session_write_close();
header("location: login-form.php");
exit();
}
//Create query
$qry="SELECT * FROM members WHERE login='$login' AND passwd='".md5($_POST['password'])."'";
$result=mysql_query($qry);
//Check whether the query was successful or not
if($result) {
if(mysql_num_rows($result) == 1) {
//Login Successful
session_regenerate_id();
$member = mysql_fetch_assoc($result);
$_SESSION['SESS_MEMBER_ID'] = $member['member_id'];
$_SESSION['SESS_FIRST_NAME'] = $member['firstname'];
$_SESSION['SESS_LAST_NAME'] = $member['lastname'];
$_SESSION['login'] = $login;/*added to work with PM script*/
$_SESSION['password'] = $password;
$_SESSION['rememberme'] = $rememberme;
session_write_close();
header("location: mail.php");
exit();
}else {
//Login failed
header("location: login-failed.php");
exit();
}
}else {
die("Query failed");
}
} /*remove both blocks if leaving in cookie info at top*/
}
?>
I must have read 50 tutorials on setting cookies, and I'm still stuck on this thing.... frustrating.
Kraven
Bookmarks