PHP mysql_num_rows() 函數定義及用法介紹
定義和用法
mysql_num_rows() 函數返回結果集中行的數目。
文法
mysql_num_rows(data)
參數描述 :
data 必需。結果集。該結果集從 mysql_query() 的調用中得到。
說明
mysql_num_rows() 返回結果集中行的數目。此命令僅對 SELECT 語句有效。要取得被 INSERT,UPDATE 或者 DELETE 查詢所影響到的行的數目,用 mysql_affected_rows()。
提示和注釋
注釋:如果使用 mysql_unbuffered_query(),則直到結果集中的所有行都被提取後 mysql_num_rows() 才能返回正確的值。
注意:使用 mysql_unbuffered_query()函數查詢到的資料結果,就無法使用 mysql_num_rows()函數來擷取查詢結果集中記錄數。
例子
<?php$con = mysql_connect("localhost", "hello", "321");if (!$con) { die('Could not connect: ' . mysql_error()); }$db_selected = mysql_select_db("test_db",$con);$sql = "SELECT * FROM person";$result = mysql_query($sql,$con);echo mysql_num_rows($result);mysql_close($con);?>
輸出類似:
3
執行個體2:
用 mysql_num_rows()函數來擷取結果集中的記錄數
<html><body> <!--上傳檔案表單--> <form method="post" action="" name = form1> <table> <tr> <td width="605" height="51" bgcolor="#CC99FF"> <p align="center">請輸入查詢內容 <input type="text" name="txt_book" id="txt_book" size="25"> <input type="submit" name="Submit" value="查詢"> </p> </td> </tr> </table> </form></body></html><?phpheader("Content-Type:text/html; charset=utf-8");$link = mysql_connect("localhost","root","root")or die("串連資料庫失敗".mysql_error());mysql_select_db("php_cn",$link);mysql_query("set names gb2312"); //設定編碼,防止發生亂髮$query = "SELECT * FROM tb_book";$sql = mysql_query($query); //執行查詢語句//$info = mysql_fetch_array($sql);//擷取查詢結果,傳回值為數組if(@$_POST['Submit']){ // 判斷按鈕的值是否為查詢 $txt_book = $_POST['txt_book']; //擷取文字框提交的值 $sql = mysql_query("select * from tb_book where bookname like '%".trim($txt_book)."%'"); //執行模糊查詢 //$info = mysql_fetch_array($sql); // 擷取查詢結果}if($info = false){ //如果檢索的資訊不存在,則輸出相對的提示資訊 echo "<p align='center' style='color: #FF0000;font-size: 12px'>對不起,你要查詢的資訊不存在</p>";}do { //do...while 迴圈?> <table> <tr align="left" bgcolor="#FFFFFF"> <td height="20" align="center"><?php echo $info["id"] ?></td> <td height="20" align="center"><?php echo $info["bookname"] ?></td> <td height="20" align="center"><?php echo $info["data"] ?></td> <td height="20" align="center"><?php echo $info["price"] ?></td> <td height="20" align="center"><?php echo $info["maker"] ?></td> <td height="20" align="center"><?php echo $info["publisher"] ?></td> </tr> </table><?php}while($info = mysql_fetch_array($sql));?>