doubailian4459 2018-05-20 10:50
浏览 73
已采纳

在php中设置cookie并通过ajax运行会话

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.

  • 写回答

1条回答 默认 最新

  • dongyou26216708 2018-05-20 11:42
    关注

    Did you using session_start(); before you set value of session.

    for example:

    <?php
        session_start();
    
        $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);
    
            //set session 
            $_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.";
        }
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?