我有jquery彈出窗體。它從用戶的一個輸入,mapping_key,一旦用戶輸入映射關鍵,我做一個ajax調用來檢查數據庫中是否有用戶這樣的密鑰。 這是我的電話。php jquery迭代php函數成功函數
的Javascript:
$.ajax({
url : base_url+'ns/config/functions.php',
type: 'POST',
data : {"mapping_key":mapping_key} ,
success: function(response) {
alert(response)
}
});
PHP:
$sql = "select first_name,last_name,user_email,company_name from registered_users where mapping_key = '$mapping_key'";
$res = mysql_query($sql);
$num_rows = mysql_num_rows($res);
if($num_rows == 0)
{
echo $num_rows;
}
else{
while($result = mysql_fetch_assoc($res))
{
print_r($result);
}
}
現在我通過返回數組要循環,並添加這些返回的值在另一個彈出形式顯示。 希望得到任何建議或幫助。
感謝lot..was還挺simple..just想不出數字出來 – user1411837 2013-04-10 07:59:34