getTotalRows
(Since 1.2.0) -- Get the total number of results found using findRecords
Find the total number of matching records (disregarding pagination).
Examples
<?php
$Record = new Pod('pod_name');
$Record->findRecords('id DESC', 10);
$total_rows = $Record->getTotalRows();
echo $total_rows; // Sample output: "514"
?>
