メールとパスワードでユーザーを検証する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;
});
});