祝大家好日子,
我正在使用 PHP 和 jquery 模式对话框登录到我的页面,然后我想重定向到另一个页面。但是,一旦我重定向到另一个页面,它就会显示在我的模态框中。但是后来我尝试关闭模式,但我无法重定向到另一个页面。我想使用 php header()
来重定向页面。你知道如何以正确的方式做到这一点吗?这就是我使用登录页面的方式。
$("form#formAction").on("submit", function (e) {
e.preventDefault();
$.ajax({
type: "POST",
url: "login-process.php",
data: $(this).serialize(),
success: function (data) {
$("input#username").val("");
$("input#password").val("");
$("input#username").focus();
}
});
});
登录.php
$data = array (
'username' => $_POST["username"],
'password' => $_POST["password"]
);
$sql = "SELECT id, role FROM user WHERE username=:username AND password=:password";
$STH = $DBH->prepare($sql);
$STH->execute($data);
$data = $STH->fetchAll(PDO::FETCH_ASSOC);
$role = $data[0]['role'];
$count = $STH->rowCount();
if ($count > 0) {
session_start();
$_SESSION['login'] = 'YES';
if ($role == 'admin') {
$_SESSION['role'] = 'admin';
} else {
$_SESSION['role'] = 'customer';
}
echo 'success';
} else {
echo "Please check your username or password again.";
}
任何帮助将非常感激。谢谢