dbase_numrecords

(PHP 3, PHP 4 , PHP 5)

dbase_numrecords --  Find out how many records are in a dBase database

Description

int dbase_numrecords ( int dbase_identifier)

Returns the number of records (rows) in the specified database. Record numbers are between 1 and dbase_numrecords($db), while field numbers are between 0 and dbase_numfields($db)-1.

ont>);
for (
$i=0; $i < $nf; $i++) {
    echo
$rec[$i]."<br />\n";
}

?>