我有一个 Jquery 函数,它可以生成条形图、折线图等报告。
我在 Jquery 中使用 ajax 来调用返回 Json 对象的 php 函数。问题是,我必须返回表中所有列的完整数据。使用 ajax,我已成功地将单列中的所有值返回到我的 Jquery 函数。但是,我无法返回多个列。请帮我。
//Ajax function calling
$.ajax({
url: 'Data.php', //the script to call to get data
data: "", //you can insert url argumnets here to pas
//for example "id=5&parent=6"
dataType: 'json',
async: false,//data format
success: function(data) //on recieve of reply
{
var returnedArray = [];
returnedArray = data;
}
});
///// Data.php code
<?php
$host = "localhost";
$user = "root";
$pass = "";
$databaseName = "edb";
$tableName = "user";
$con = mysql_connect($host,$user,$pass);
$dbs = mysql_select_db($databaseName, $con);
$i=0;
$storeArray= Array();
$result = mysql_query("SELECT User_Id FROM user");
while ($row = mysql_fetch_array($result, MYSQL_ASSOC))
{
$storeArray[$i] = $row['User_Id'];
$i++;
}
echo json_encode($newstoreArray);
?>
在上面的 Data.php 中,我已成功返回单列“User_Id”值的值。我想返回更多列。