当前位置: 移动技术网 > IT编程>开发语言>PHP > ajax php传递和接收变量实现思路及代码

ajax php传递和接收变量实现思路及代码

2019年04月14日  | 移动技术网IT编程  | 我要评论
so, your jquery might be something like.....
复制代码 代码如下:

$.ajax({
url: 'query.php',
data: {id:10},
datatype: json
success: function(results) {
if (results.msg == 'success') {
for (var i in data) {
$('#content').append(
'id = ' + results.data[i].id + ', description = ' + results.data[i].description + ', msrp = ' + results.data[i].msrp
);
}
} else {
$('#content').append(results.msg);
}
}
});

and your php....
复制代码 代码如下:

if (isset($_get['id'])) {
$sql = "select id, description, msrp from tbl where id = '{$_get['id']}'";
$return = array();
if ($result = mysql_query($sql)) {
if (mysql_num_rows($result)) {
$return['msg'] = 'success';
while ($row = mysql_fetch_assoc($result)) {
$return['data'][] = $row;
}
} else {
$return['msg'] = 'no results found';
} else {
$return['msg'] = 'query failed';
}
header("content-type: application/json");
echo json_encode($result);
}

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网