虛拟主機域名注冊-常見問題數(shù)據庫問題 → 數(shù)據庫問題


如何連接mysql數(shù)據庫?
作者:

我司的Mysql可(kě)以在虛拟主機管理中心》數(shù)據庫》管理mysql數(shù)據庫(http://mysql.myhostadmin.net),直接在線管理,您也可(kě)以自己下載一個(gè)Phpmyadmin上(shàng)傳至您的空(kōng)間(jiān)裏面進行(xíng)數(shù)據庫的管理。


下面的例子是用PHP4連接一個(gè)mysql數(shù)據庫操作的演示

<?
    /*本例是用PHP4連接一個(gè)mysql數(shù)據庫操作的演示,
    實現連接打開(kāi)一個(gè)庫,并讀取數(shù)據的基本功能。
    */
?>
<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">聯系電()話(huà)</td>
    <td width="20%" align="center" valign="bottom">電()子郵件</td>
    <td width="20%" align="center" valign="bottom">家(jiā)庭住址</td>
  </tr>
<?
    //連接到本地mysql數(shù)據庫
    $myconn=mysql_connect("localhost","root","");
    //選擇test為(wèi)操作庫
    mysql_select_db("test",$myconn);
    $strSql="select * from reguser";
    //用mysql_query函數(shù)從user表裏讀取數(shù)據
    $result=mysql_query($strSql,$myconn);
    while($row=mysql_fetch_array($result))//通(tōng)過循環讀取數(shù)據內(nèi)容
    {
?>
  <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>
<?
    }
    //關閉對數(shù)據庫的連接
    mysql_close($myconn);
?>
</table>
</BODY>
</HTML>


來(lái)源:
閱讀:19407
日期:2003-09-26

【 雙擊滾屏 】 【 推薦朋友(yǒu) 】 【 收藏 】 【 打印 】 【 關閉 】 【 字體(tǐ): 】 
上(shàng)一篇:如何用asp的jmail發郵件?
下一篇:已經沒有(yǒu)了。
  >> 相關文章
  沒有(yǒu)相關文章。