十天學會php之第五天

2021-04-17 08:39:37 字數 584 閱讀 9361

文字關鍵字:程式設計/php/技巧

先看兩個函式:

1、mysql_query

送出乙個query字串。語法:intmysql_query(stringquery,int[link_identifier]);返回值:整數

看乙個簡單的例子:

<?

$exec="select*fromuser";

$result=mysql_query($exec);

while($rs=mysql_fetch_object($result))

?>

當然,表user中有乙個username的字段,這就類似asp中的

<%

exec="select*fromuser"

setrs=server.createobject("adodb.recordset")

rs.openexec,conn,1,1

dowhilenotrs.eof

response.write"username:"&rs("username")&"

"rs.movenext

loop

%>

十天學會php之第五天

學習目的 學會讀取資料 先看兩個函式 1 mysql query 送出乙個 query 字串。語法 int mysql query string query,int link identifier 返回值 整數 本函式送出 query 字串供 mysql 做相關的處理或者執行。若沒有指定 link ...

十天學會php之第五天

學習目的 學會讀取資料 先看兩個函式 1 mysql query 送出乙個 query 字串。語法 int mysql query string query,int link identifier 返回值 整數 本函式送出 query 字串供 mysql 做相關的處理或者執行。若沒有指定 link ...

十天學會php之第五天

學習目的 學會讀取資料 先看兩個函式 1 mysql query 送出乙個 query 字串。語法 int mysql query string query,int link identifier 返回值 整數 本函式送出 query 字串供 mysql 做相關的處理或者執行。若沒有指定 link ...