php獲取數(shù)據(jù)庫的表的數(shù)據(jù)(php讀取數(shù)據(jù)表內(nèi)容)
今天給各位分享php獲取數(shù)據(jù)庫的表的數(shù)據(jù)的知識(shí),其中也會(huì)對(duì)php讀取數(shù)據(jù)表內(nèi)容進(jìn)行解釋,如果能碰巧解決你現(xiàn)在面臨的問題,別忘了關(guān)注本站,現(xiàn)在開始吧!
本文目錄一覽:
- 1、php中怎么從數(shù)據(jù)庫中取出數(shù)據(jù)?怎么顯示?最好有詳細(xì)的代碼
- 2、php如何獲取數(shù)據(jù)庫信息
- 3、我們學(xué)的php中常用的從數(shù)據(jù)庫表里邊取數(shù)據(jù)的方式都有哪些,比如用到數(shù)組的知識(shí)等等,等候您的回答,
php中怎么從數(shù)據(jù)庫中取出數(shù)據(jù)?怎么顯示?最好有詳細(xì)的代碼
$con=mysql_connect('localhost','root','');//數(shù)據(jù)庫信息
mysql_select_db('shop');//數(shù)據(jù)庫名
mysql_query("set?names?utf8");//設(shè)置字符集編碼
$sql="select?goods_name,goods_number,shop_price?from?goods";//查詢語句
$res=mysql_query($sql);//執(zhí)行查詢
while($row=mysql_fetch_assoc($res)){
????$rows[]=$row;//接受結(jié)果集
}
//遍歷數(shù)組
foreach($rows?as?$key=$v){
????echo?$v['goods_name']."---".$v['goods_number']."---".$v['shop_price']."br/";
}
php如何獲取數(shù)據(jù)庫信息
代碼如下:?View
Code
PHP
include("conn.php");//調(diào)用數(shù)據(jù)庫連接文件
echo
"table
width=572
height=56
border=0
cellspacing=1
";
//創(chuàng)建html表格
echo
"tr
bgcolor=#9999FF";
echo
"th
width=33
scope=colid/th";
echo
"th
width=100
scope=coluser_name/th
";
echo
"th
width=100
scope=coluser_pass/th
";
echo
"th
width=100
scope=colstaus/th";
echo
"th
width=100
scope=colinsert_time/th";
echo
"/tr";
$SQL
=
"select
*
from
user_info";
$query
=
mysql_query($SQL);
//SQL查詢語句
while
($row
=
mysql_fetch_array($query)){
//使用while循環(huán)mysql_fetch_array()并將數(shù)據(jù)返回?cái)?shù)組
echo
"tr
onmouseout=this.style.backgroundColor=''
onMouseOver=this.style.backgroundColor='#99CC33'
bgcolor=#CCCCCC";
echo
"td$row[0]/td";
//輸出數(shù)組中數(shù)據(jù)
echo
"td$row[1]/td";
echo
"td$row[2]/td";
echo
"td$row[3]/td";
echo
"td$row[4]/td";
echo
"/tr";
}
echo
"/table";輸出記錄截圖
我們學(xué)的php中常用的從數(shù)據(jù)庫表里邊取數(shù)據(jù)的方式都有哪些,比如用到數(shù)組的知識(shí)等等,等候您的回答,
mysql_fetch_array (取數(shù)字和索引數(shù)組)
mysql_fetch_assoc ( 取索引數(shù)組)
mysql_fetch_row (取數(shù)字?jǐn)?shù)組)
mysql_fetch_object (取對(duì)象)
取的數(shù)據(jù)內(nèi)容是一樣的,類型不一樣,訪問方式不一樣
php獲取數(shù)據(jù)庫的表的數(shù)據(jù)的介紹就聊到這里吧,感謝你花時(shí)間閱讀本站內(nèi)容,更多關(guān)于php讀取數(shù)據(jù)表內(nèi)容、php獲取數(shù)據(jù)庫的表的數(shù)據(jù)的信息別忘了在本站進(jìn)行查找喔。
掃描二維碼推送至手機(jī)訪問。
版權(quán)聲明:本文由飛速云SEO網(wǎng)絡(luò)優(yōu)化推廣發(fā)布,如需轉(zhuǎn)載請注明出處。