十天學會php之第五天 (轉)

themoney發表於2007-10-01
十天學會php之第五天 (轉)[@more@]

學習目的:學會讀取資料

先看兩個:
1、my_query
送出一個 query 字串。 語法: int _query(string query, int [link_ntifier]); 返回值: 整數

本函式送出 query 字串供 MySQL 做相關的處理或者。若沒有指定 link_identifier 引數,則會自動尋找最近開啟的 ID。當 query 查詢字串是 UPDATE、INSERT 及 DELETE 時,返回的可能是 true 或者 false;查詢的字串是 則返回新的 ID 值,當返回 false 時,並不是執行成功但無返回值,而是查詢的字串有錯誤。

2、mysql_fetch_ 返回類資料。 語法: object mysql_fetch_object(int result, int [result_typ]); 返回值: 類

本函式用來將查詢結果 result 拆到類變數中。若 result 沒有資料,則返回 false 值。

看一個簡單的例子:

$exec="select * from user";
$result=mysql_query($exec);
while($rs=mysql_fetch_object($result))
{
echo "username:".$rs->username."
";
}
?>
當然,表user中有一個username的欄位,這就類似中的
exec="select * from user"
set rs=server.createobject("ado.recordset")
rs.open exec,conn,1,1
do while not rs.eof
response.write "username:"&rs("username")&"
"
rs.movenext
l
%>
當然先要連線,一般我們 require_once('conn.');而conn.php裡面就是上一次說的連線資料庫的程式碼。

小小的兩條命令可以完成讀取資料的工作了,今天說到這裡下一次說資料的新增刪除修改。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10794571/viewspace-974301/,如需轉載,請註明出處,否則將追究法律責任。

相關文章