fetchRecord
(Since 1.2.0) -- Retrieve a row of column values from the database
This function is an alternative to showTemplate. If you want to manually loop through all results from findRecords, then this function will prove useful.
Examples
<?php
$pods = new Pod('event');
$pods->findRecords('id DESC', 10);
while ($pods->fetchRecord())
{
// Do something
}
?>
