需要三個步驟:第一步,用php連接數(shù)據(jù)庫;
成都創(chuàng)新互聯(lián)主要從事成都網(wǎng)站設(shè)計、網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)陽信,十載網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):028-86922220
第二步,用sql語句查詢數(shù)據(jù)并把查詢出來的結(jié)果存入到一個數(shù)組或?qū)ο笾小?/p>
第三步,顯示數(shù)據(jù)。
下面我就用面向過程的編程方式來顯示數(shù)據(jù)。這里我用網(wǎng)頁中的表格來顯示數(shù)據(jù)。你可以根據(jù)你自己的需要來選擇顯示的方式。
?php
$conn=mysql_connect("localhost","用戶名",地密碼逗); //連接數(shù)據(jù)庫,用戶名、密碼即數(shù)據(jù)庫的用戶名和密碼
mysql_select_db("數(shù)據(jù)庫名"); //選擇你要查詢的數(shù)據(jù)庫的名稱
mysql_query(地SET NAMES 'gbk'逗); //設(shè)置查詢的數(shù)據(jù)庫數(shù)據(jù)編碼,根據(jù)數(shù)據(jù)庫的編碼設(shè)置
$sql="select * from user"; //比如說你要查詢一個用戶表user,假設(shè)它有三個字段,用戶id,用戶名username,密碼password,
$rs=mysql_query($sql);
?
table width="400" border="1" style="text-align:center"
trth用戶ID/thth用戶名/thth密碼/th/tr
?php
while($row=mysql_fetch_assoc($rs)){
?
trtd?php echo $row['id'];?/tdtd?php echo $row['username'];?/tdtd?php echo $row['password'];?/td/tr
?php
}
?
/table
php是采用二進制形式存儲圖片及讀取顯示的,首先通過代碼創(chuàng)建數(shù)據(jù)表,然后上傳圖片服務(wù)器再通過瀏覽器顯示,具體編程代碼舉例:
1、首先需要創(chuàng)建數(shù)據(jù)表,具體代碼如下圖所示。
2、然后寫上傳圖片到服務(wù)器的頁面 upimage.html用來將圖片上傳數(shù)據(jù)庫,如下圖所示代碼。
3、處理圖片上傳的php upimage.php文件,如下圖所示圖片已儲存到數(shù)據(jù)庫。
4、顯示圖片的php getimage.php文件,為了看一下效果提前把ID寫入代碼。
5、預(yù)覽網(wǎng)站從數(shù)據(jù)庫中提取了圖片,并顯示到頁面上。
mysql_select_db($database);
要是
?php
$con = mysql_connect("localhost","root","");mysql_select_db($sql);
$result=mysql_query('select name from tag_cate where id=3');mysql_close($con);
?
還是無內(nèi)容顯示咋辦?sql是數(shù)據(jù)庫名。
則
?php
$con = mysql_connect("localhost","root","");mysql_select_db($sql);
//$result是記過集好不好,還有你的輸出呢?echo?
$result=mysql_query('select name from tag_cate where id=3') or die('ERROR : '.mysql_error());if($result){
if (mysql_num_rows($result) == 0) {
while($row = mysql_fetch_assoc($result)){echo $row['name'].'';
}
}
mysql_free_result($result);
}
mysql_close($con);
需要三個步驟:第一步,用php連接數(shù)據(jù)庫;
第二步,用sql語句查詢數(shù)據(jù)并把查詢出來的結(jié)果存入到一個數(shù)組或?qū)ο笾小?/p>
第三步,顯示數(shù)據(jù)。
下面我就用面向過程的編程方式來顯示數(shù)據(jù)。這里我用網(wǎng)頁中的表格來顯示數(shù)據(jù)。你可以根據(jù)你自己的需要來選擇顯示的方式。
?php
$conn=mysql_connect("localhost","用戶名",”密碼“); //連接數(shù)據(jù)庫,用戶名、密碼即數(shù)據(jù)庫的用戶名和密碼
mysql_select_db("數(shù)據(jù)庫名"); //選擇你要查詢的數(shù)據(jù)庫的名稱
mysql_query(”SET NAMES 'gbk'“); //設(shè)置查詢的數(shù)據(jù)庫數(shù)據(jù)編碼,根據(jù)數(shù)據(jù)庫的編碼設(shè)置
$sql="select * from user"; //比如說你要查詢一個用戶表user,假設(shè)它有三個字段,用戶id,用戶名username,密碼password,
$rs=mysql_query($sql);
?
table width="400" border="1" style="text-align:center"
trth用戶ID/thth用戶名/thth密碼/th/tr
?php
while($row=mysql_fetch_assoc($rs)){
?
trtd?php echo $row['id'];?/tdtd?php echo $row['username'];?/tdtd?php echo $row['password'];?/td/tr
?php
}
?
/table