<?php
//需要執行的SQL語句
//單條
$sql="select idname from tbl_user where id=";
//多條數據
//$sql="select idname from tbl_user";
//調用connphp文件進行數據庫操作
require(Connphp);
//提示操作成功信息注意$result存在於connphp文件中被調用出來
if($result)
{
// $array=mysql_fetch_array($resultMYSQL_ASSOC);
/*數據集
$users=array();
$i=;
while($row=mysql_fetch_array($resultMYSQL_ASSOC)){
echo $row[id]$row[name]</br>;
$users[$i]=$row;
$i++;
}
echo json_encode(array(dataList=>$users));
*/
/*單條數據*/
$row=mysql_fetch_row($resultMYSQL_ASSOC);
echo json_encode(array(jsonObj=>$row));
}
mysql_free_result($result);
//釋放結果
mysql_close();
//關閉連接
?>
運行結果
單條數據{"jsonObj":{"id":"""name":"lmw"}}
多條數據{"dataList":[{"id":"""name":"lmw"}{"id":"""name":"xxj"}{"id":"""name":"xxxj"}]}
From:http://tw.wingwit.com/Article/program/PHP/201311/21091.html