In PHP, you can query the number of mysql rows through the "mysqli_num_rows()" function. The syntax is "mysqli_num_rows(result);". The return value is the number of rows in the result set.
Recommended: "PHP Video Tutorial"
You can use the mysqli_num_rows function to query the number of rows.
Definition and usage
mysqli_num_rows() function returns the number of rows in the result set.
Syntax
mysqli_num_rows(result);
Parameters
result Required. Specifies the result set identifier returned by mysqli_query(), mysqli_store_result(), or mysqli_use_result().
Technical details
Return value: Returns the number of rows in the result set.
PHP Version: 5
The above is the detailed content of How to query the number of items in php mysql. For more information, please follow other related articles on the PHP Chinese website!