真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

php數(shù)據(jù)庫獲取數(shù)組 php從數(shù)據(jù)庫取數(shù)據(jù)輸出

PHP怎么從數(shù)據(jù)庫中取出一維數(shù)組

$con?=?mysql_connect('localhost',?'root',?'root');

創(chuàng)新互聯(lián)建站服務(wù)電話:18980820575,為您提供成都網(wǎng)站建設(shè)網(wǎng)頁設(shè)計及定制高端網(wǎng)站建設(shè)服務(wù),創(chuàng)新互聯(lián)建站網(wǎng)頁制作領(lǐng)域10多年,包括成都木屋等多個行業(yè)擁有多年的網(wǎng)站設(shè)計經(jīng)驗,選擇創(chuàng)新互聯(lián)建站,為企業(yè)錦上添花!

mysql_select_db("php",?$con);

$result?=?mysql_query("SELECT?*?FROM?`game`");?

$data_name=array();//有修改

while($rs?=?mysql_fetch_assoc($result)){

$data_name[]?=?$rs['name'];

}

print_r($data_name);//是你要的

PHP 去讀數(shù)據(jù)庫到數(shù)組 怎么弄

本文實例講述了php實現(xiàn)通用的從數(shù)據(jù)庫表讀取數(shù)據(jù)到數(shù)組的函數(shù)。分享給大家供大家參考。具體分析如下:

此函數(shù)不關(guān)心表結(jié)構(gòu),只需要指定表名、結(jié)構(gòu)和查詢條件既可以對表進行通用查詢操作,非常實用。

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 } ?

PHP 讀取數(shù)據(jù)庫數(shù)組。。。

假如 數(shù)據(jù)為 $value

$temp=explode(",",$value);?

foreach($temp?as?$v){

$result[$v]=1;

}

然后html的時候可以這樣:

if($result['admin']){

echo?'input?type=checkbox?/';

}

同理其他類型,可以foreach?輸出


本文名稱:php數(shù)據(jù)庫獲取數(shù)組 php從數(shù)據(jù)庫取數(shù)據(jù)輸出
文章鏈接:http://weahome.cn/article/dojpjsj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部