Hi I'm having trouble to setup cookie and run the session through ajax from php.
this is a login page.
<?php
include ("includes/main_modal.php");
require_once('includes/mysqli_connect.php'); //function called
?>
<script>
//user validation
var strUser = "";
var strPsswrd = "";
var xmlhttp = new XMLHttpRequest();
function response(e)
{
if(e.button == 0)
{
if(login.uname.value == "")
{
document.getElementById("emailError").innerHTML = "Please enter useremail";
}
else if(login.psw.value == "")
{
document.getElementById("passwordError").innerHTML = "Please enter password";
}
else
{
strUser = login.uname.value;
strPsswrd = login.psw.value;
xmlhttp.onreadystatechange = change;
function change()
{
if(xmlhttp.readyState == 4 && xmlhttp.status == 200)
{
if(xmlhttp.responseText == "true")
{
location.href="index.php";
}
else {
document.getElementById("passwordError").innerHTML = xmlhttp.responseText;
}
}
}
xmlhttp.open("GET", "loginUser.php?q=" + strUser + "&p=" + strPsswrd, true);
xmlhttp.send();
}
}
}
and this goes to the loginUser php file
<?php
$q = $_GET["q"];
$p = $_GET["p"];
$dbc = mysqli_connect("localhost", "lucy", "abc123", "userDB");
if(mysqli_connect_error())
{
echo "Database cannot be connected", mysqli_connect_error();
exit();
}
$query = "select * from users where (userEmail = '$q'and userPassword = SHA('$p'))";
$result = mysqli_query($dbc, $query);
$num = mysqli_num_rows($result);
if($num != 0)
{
$row = mysqli_fetch_array($result, MYSQLI_ASSOC);
$_SESSION ['userName'] = $row['userEmail'];
$name = $row['userEmail'];
setcookie ("dbMember", $name, time() + 60*60*2, "/"); //last 2 hours
$login = "true";
echo $login;
}
else
{
echo "Username or Password is incorrect. Please try again.";
}
?>
if user info matches with the database it will pass 'true' back to login page, then will reload the index page.
<?php
//This is the main page for the site.
include("includes/main_modal.php");
?>
<?php
if(isset($_SESSION['userName']) && isset($_COOKIE['dbMember']))
{
$user = $_SESSION['userName'];
echo $user;
}
else {
echo "goback";
}
?>
It runs the index page as soon as user loges in but the session doesn't start and I don't know what I am doing wrong.
main_modal.php has session_start();
at the very top of the page.
Thank you in advance.