How to get records 6-{n}, instead of "The First 5" or "All Records"

2 posts by 2 authors in: Forums > CMS Builder
Last Post: June 25, 2010   (RSS)

Re: [zakcoop] How to get records 6-{n}, instead of "The First 5" or "All Records"

By Kenny - June 25, 2010

Add 'offset' => 4, to your top of page code to get to start at the 6th record. (record numbering starts at 0)

So something like this:

list($newsRecords, $newsMetaData) = getRecords(array(
'tableName' => 'news',
'offset' => 4,


Let us know if that doesn't work for you.


Kenny