遍歷數(shù)據(jù)表,把相應(yīng)的數(shù)據(jù)放到數(shù)組中即可
成都創(chuàng)新互聯(lián)公司長期為千余家客戶提供的網(wǎng)站建設(shè)服務(wù),團隊從業(yè)經(jīng)驗10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為魏都企業(yè)提供專業(yè)的做網(wǎng)站、網(wǎng)站建設(shè),魏都網(wǎng)站改版等技術(shù)服務(wù)。擁有十年豐富建站經(jīng)驗和眾多成功案例,為您定制開發(fā)。
例如:
?php
//定義一個數(shù)組,用于保存讀取到的數(shù)據(jù)
$contents
=
array();
$query
=
mysql_query("select
*
from
table");
//遍歷數(shù)據(jù)表
while($array
=
mysql_fetch_array($query)){
$contents[]
=
$array;
}
print_r($contents);
//然后循環(huán)數(shù)組,或者通過鍵名使用數(shù)組
foreach($contents
as
$value){
print_r($value);
}
echo
$contents[0]['字段名稱'];
?
$sql = "SELECT * FROM log WHERE uid='$uid';"
$result = mysql_query($sql); //執(zhí)行返回的result ID
$arr[] = array(); //接收結(jié)果的數(shù)組
while( $row = mysql_fetch_assoc($result) ) $arr[]=$row; //存入數(shù)組
var_dump($arr);
樓上的
“$jg=mysql_query(你的sql語句);
while($icount($jg)) ” 這里的$jg 是返回的mysql的一個執(zhí)行ID 并不是數(shù)據(jù)數(shù)組 所以不能用count
首先定義一個數(shù)組,然后遍歷數(shù)據(jù)表,把相應(yīng)的數(shù)據(jù)放到數(shù)組中,最后通過json_encode()轉(zhuǎn)化數(shù)組
json_encode() 函數(shù)的功能是將數(shù)值轉(zhuǎn)換成json數(shù)據(jù)存儲格式。
例如:
?php
//引入外部數(shù)據(jù)庫連接文件
include("conn.php");
//要查詢的sql語句數(shù)組
$sql[0]=mysql_query("select?*??from?kongqizhiliang?order?by?id?desc??limit?1");
$sql[1]=mysql_query("select?*??from?beidian?order?by?id?desc??limit?1");
$sql[2]=mysql_query("select?*??from?beidian?order?by?id?desc??limit?1");
//遍歷結(jié)果
foreach?($sql?as?$key?=?$value)?{
while($row=mysql_fetch_assoc($value)){
$data[]=$row;
}
$output[]=$data;
}
print(json_encode($output));
mysql_close();
?