數(shù)據(jù)庫(kù)提到的數(shù)據(jù)一般是資源類型的,要逐一讀出,添加到數(shù)組
成都創(chuàng)新互聯(lián)于2013年開始,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元安平做網(wǎng)站,已為上家服務(wù),為安平各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:18980820575
while($row = mysql_fetch_assoc($res)){
$data[] = $row;
}
foreach或者while
例如
$sql = "select * from test";
$result = mysql_query($sql);
while($row = mysql_fetch_array($result)) {
echo $row['要輸出的字段'];
}
自己敲了一段 可以改改放到div或者表格中 循環(huán)
本文實(shí)例講述了php實(shí)現(xiàn)通用的從數(shù)據(jù)庫(kù)表讀取數(shù)據(jù)到數(shù)組的函數(shù)。分享給大家供大家參考。具體分析如下:
此函數(shù)不關(guān)心表結(jié)構(gòu),只需要指定表名、結(jié)構(gòu)和查詢條件既可以對(duì)表進(jìn)行通用查詢操作,非常實(shí)用。
function listmytablerows($table, $name, $field, $where, $textID) { / / Connect to the database and query execution connect (); $Sql = "select * from". $table. "". $where. "ORDER BY". $field; $Req = mysql_query($sql); $Res = mysql_num_rows($req); ? Select name = "?php echo $name; ?" id="?php echo $textID; ?" option value="" ____/ option ? Php / / We do a loop that will read the information for each record while ($data = mysql_fetch_array($res)) { / / We display the information from the current record ? Option value = "?php echo $data['id']; ?" ?php echo $data[$field]; ? / Option ? Php } ? / Select ? Php } ?
function(){
$查詢="select
*
from
表";
//
如果只查詢標(biāo)題,就只用些標(biāo)題的對(duì)應(yīng)字段名
//連接數(shù)據(jù)庫(kù)
for($i=0;$i$記錄數(shù);$i++){
$讀取=$lj-fetch_assoc();
//
查詢
$sid[$i]=$讀取[s_id];
$標(biāo)題[$i]
=
$讀取[s_title];
}
$arra=array
($aid,$title);
return
$arra;
}
不知可否幫你解決問(wèn)題了