標籤:
計應134 盧久貴
<?
/*本例是用PHP串連一個mysql資料庫操作的示範,
實現串連開啟一個庫,並讀取資料的準系統。
資料庫名稱為:test 表名為:user
分別有7個欄位:id userid sex age tel email address
伺服器;資料庫編碼 均採用 utf-8
mysql_query("set names ‘gbk‘"); // //這就是指定資料庫字元集,一般放在串連資料庫後(解決資料庫亂碼)
*/
?>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<style type="text/css">
<!--
input { font-size:9pt;}
A:link {text-decoration: underline; font-size:9pt;color:000059}
A:visited {text-decoration: underline; font-size:9pt;color:000059}
A:active {text-decoration: none; font-size:9pt}
A:hover {text-decoration:underline;color:red}
body,table {font-size: 9pt}
tr,td{font-size:9pt}
-->
</style>
<title>註冊會員列表 - 讀取mysql的測試</title>
</HEAD>
<body alink="#FF0000" link="#000099" vlink="#CC6600" topmargin="8" leftmargin="0" bgColor="#FFFFFF">
<br><br><center><font color=green size=3><b>注 冊 會 員 列 表</b></font></center>
<br>
<table cellspacing=0 bordercolordark=#FFFFFF width="95%" bordercolorlight=#000000 border=1 align="center" cellpadding="2">
<tr bgcolor="#6b8ba8" style="color:FFFFFF">
<td width="5%" align="center" valign="bottom" height="19">ID</td>
<td width="10%" align="center" valign="bottom">姓名</td>
<td width="5%" align="center" valign="bottom">性別</td>
<td width="5%" align="center" valign="bottom">年齡</td>
<td width="20%" align="center" valign="bottom">聯絡電話</td>
<td width="20%" align="center" valign="bottom">電子郵件</td>
<td width="20%" align="center" valign="bottom">家庭住址</td>
</tr>
<?
//串連到本地mysql資料庫
$myconn=mysql_connect("localhost","root","root");
//選擇test為操作庫
mysql_query("set names ‘gbk‘"); // //這就是指定資料庫字元集,一般放在串連資料庫後面就系了
mysql_select_db("test",$myconn);
$strSql="select * from user";
//用mysql_query函數從user表裡讀取資料
$result=mysql_query($strSql,$myconn);
while($row=mysql_fetch_array($result))//通過迴圈讀取資料內容
{
?>
<tr>
<td align="center" height="19"><?echo $row["id"]?></td>
<td align="center"><?echo $row["userid"]?></td>
<td align="center"><?echo $row["sex"]?></td>
<td align="center"><?echo $row["age"]?></td>
<td align="center"><?echo $row["tel"]?></td>
<td align="center"><?echo $row["email"]?></td>
<td align="center"><?echo $row["address"]?></td>
</tr>
<?
}
//關閉對資料庫的串連
mysql_close($myconn);
?>
</table>
</BODY>
</HTML>
php資料庫訪問