fbsql_num_rows

(PHP 4 >= 4.0.6, PHP 5 < 5.3.0)

fbsql_num_rowsGet number of rows in result

Descrierea

fbsql_num_rows ( resource $result ) : int

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().

Parametri

result

Un identificator al rezultatului întors de fbsql_query() sau fbsql_db_query().

Valorile întoarse

Returns the number of rows returned by the last SELECT statement.

Exemple

Example #1 fbsql_num_rows() example

<?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";

?>

A se vedea și

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top