需要创建一个JavaScript文件,将值设置为PHP文件中的两个变量。然后,该PHP文件创建一个JSON结构并回显一些数据。
我需要一个JavaScript表单,其中有一个表单,其中有两个输入分配给PHP变量,然后拉出JSON结构,并将结果存储在HTML表中。
目前正在尝试:
$(document).ready(function() {
$("#button1").click(function(event){
$.get("external.php", {variable_1: 'VALUE1', variable_2: 'VALUE2'), function(JSONresult){
alert (variable_1);
}, 'json');
});
});
相关的PHP是:
$variable_1 = $_GET['variable_1'];
$variable_2 = $_GET['variable_2'];
// Some code in between that accesses a DB
echo json_encode($res->fetchAll());
答案 0 :(得分:0)
尝试
console.log(JSONresult); console.log(JSONresult['variable_1']);
你会知道价值所在。