(PHP 4 >= 4.0.6, PHP 5, PHP 7)
Get number of rows in result
int fbsql_num_rows ( resource $result )
Gets the number of rows in the given result
set.
This function is only valid for SELECT statements. To retrieve the number of rows returned from a INSERT, UPDATE or DELETE query, use fbsql_affected_rows().
Parameters:
result
A result identifier returned by fbsql_query() or fbsql_db_query().
Returns:
Returns the number of rows returned by the last SELECT statement.
Examples:
fbsql_num_rows() example
1 2 3 4 5 6 7 8 9 10 11 | <?php $link = fbsql_connect( "localhost" , "username" , "password" ); fbsql_select_db( "database" , $link ); $result = fbsql_query( "SELECT * FROM table1;" , $link ); $num_rows = fbsql_num_rows( $result ); echo "$num_rows Rows\n" ; ?> |
See also:
Please login to continue.