PHP는 mysql_affected_rows( )를 사용합니다. 쿼리가 변경된 행 수를 찾는 함수입니다. 그것을 설명하기 위해 우리는 다음과 같은 예를 가지고 있습니다 -
예시
<html> <head> <title>Rows affected by query</title> </head> <body> <?php $dbhost = 'localhost:3036'; $dbuser = 'root'; $dbpass = 'rootpassword'; $conn = mysql_connect($dbhost, $dbuser, $dbpass); if(! $conn ) { die('Could not connect: ' . mysql_error()); } echo 'Connected successfully<br />'; mysql_select_db( 'TUTORIALS' ); $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\n"); ?> </body> </html>