我有一个数据库,其中写有Facebook用户ID,Facebook用户名和邮件地址。当文档加载时,我想检查数据库中是否已存在给定的ID(存储在javascript值中)。因此,我需要做的是检查PHP是否存在数据库中的Javascript变量(值)。任何想法如何做到这一点?
答案 0 :(得分:1)
可能最简单的方法是向包含ID的服务器(PHP脚本)发出XHR(AJAX)请求,然后检查服务器上是否存在该ID。
答案 1 :(得分:1)
您可以使用ajax执行此操作。
使用jQuery例如:
$.post("check.php",{id: your_var},function(data){
alert(data);
});
check.php包含检查数据库的PHP代码。
答案 2 :(得分:1)
我认为你需要AJAX。 例如:
<script>
//user id
var uid = '100';
//AJAX create
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
//GET request create and send
xmlhttp.open("GET","checkuser.php?uid="+uid,false);
xmlhttp.send();
//Good. in "xmlhttp.responseText" will store true or false (user exist or not)
alert(xmlhttp.responseText); //check answer from PHP
</script>
确定。现在PHP脚本。
//这是checkuser.php
<?php
$uid = int()$_GET['uid'];
echo (bool)functionForCheckIdInDB($uid);
?>
P.S。当然使用jQuery更容易。