首頁  >  文章  >  後端開發  >  我們如何寫PHP腳本來計算MySQL查詢所影響的行數?

我們如何寫PHP腳本來計算MySQL查詢所影響的行數?

王林
王林轉載
2023-08-31 09:09:211117瀏覽

我們如何寫PHP腳本來計算MySQL查詢所影響的行數?

PHP使用mysql_affected_rows()函數來找出查詢改變了多少行。為了說明這一點,我們有以下範例−

範例

<html>
   <head>
      <title>Rows affected by query</title>
   </head>
   <body>
      <?php
         $dbhost = &#39;localhost:3036&#39;;
         $dbuser = &#39;root&#39;;
         $dbpass = &#39;rootpassword&#39;;
         $conn = mysql_connect($dbhost, $dbuser, $dbpass);
         
         if(! $conn ) {
            die(&#39;Could not connect: &#39; . mysql_error());
         }
         echo &#39;Connected successfully<br />&#39;;
         
         mysql_select_db( &#39;TUTORIALS&#39; );
         $result_id = mysql_query ($query, $conn_id);
         # report 0 rows if the query failed
         $count = ($result_id ? mysql_affected_rows ($conn_id) : 0);
         print ("$count rows were affected</p><p>");
      ?>
   </body>
</html>

以上是我們如何寫PHP腳本來計算MySQL查詢所影響的行數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除