使用PHP mySQL和Ajax登录表单

时间:2015-04-02 06:46:19

标签: php jquery mysql ajax

请查看代码

if(count($errors) ==0)
{
    try {
        $obj_user->login();
        $_SESSION['obj_user'] = serialize($obj_user);
        echo "Success";
        header("Location: index.php");
    } catch (Exception $ex) {
        echo "Invalid or missing username/password";
    }
}

请求来自login.php。 ISSUE

  1. 我的会话未设置。
  2. 我希望当我的登录成功后,我的页面会移至index.php
  3. 实际上做的是它在div中加载index.php,该div是为login.php中的ajax响应而放置的。

0 个答案:

没有答案