我有一个通过电子邮件和密码验证用户的 php 脚本,如果它无效,我的脚本会回显“无法登录”之类的内容,如果成功,它将指向另一个页面,我该怎么做?
这是我的php代码:
if(isset($_POST['email'])&&isset($_POST['password'])){
$email = $_POST['email'];
$password = $_POST['password'];
$result = userAuthentication($email,$password);
if($result == false){
echo 'Unable to login';
}
else if($result == true){
header("location: success.php");
}
}
这是我的js代码:
$(function() {
$("button").button();
$("#clickme").click(function(){
$.post("check.php", {
"email": $("#txtEmail").val(),
"password": $("#txtPassword").val()
},
function(msg){
$(".message").html(msg);
});
return false;
});
});