1、連線資料庫伺服器:
$coon = mysql_connect("伺服器","使用者名稱","密碼");
2、選擇資料庫
mysql_select_db("資料庫","資料庫連線");
3、執行sql語句:$rs = mysql_query("sql語句","資料庫連線");
4、遍歷結果集的方法:
while($row=mysql_fetch_row($rs) //row可以用陣列下標獲取資料集欄位
while($row=mysql_fethc_array($rs)) //row可以用欄位名稱和下標數
while($row = mysql_fetch_row($result))
$result = mysql_query($sql);
while($row = mysql_fetch_array($result))
$result = mysql_query($sql);
while($row = mysql_fetch_object($result))
$result = mysql_query($sql);
while($row = mysql_fetch_assoc($result))
PHP訪問資料庫
在php中,無論訪問哪種資料庫,都需要使用sql。php最適合與mysql資料庫配合使用,主要原因是php提供了很多操作mysql資料庫的內建函式,可方便地實現訪問和操作mysql資料庫的各種需要。php訪問mysql資料庫的具體步驟 1 建立與mysql伺服器的連線 2 設定字符集 3 選擇要操作...
php訪問資料庫
1.建立資料庫 lyb create database lyb create table lyb1 id int not null auto increment title varchar 200 not null content text not null author varchar 30 no...
PHP 資料庫訪問
一 過時方法 設定頁面編碼格式 header content type text html charset utf 8 1 生成鏈結 db connect mysql connect localhost root 517 localhost 伺服器的位址 root 資料庫的使用者名稱 517 資料庫...