[eluser]simshaun[/eluser]
Offset being the same value you would use in an actual SQL query.
Say you want to retrieve the first thirty rows of a table, well the offset is going to be 0.
SQL: LIMIT 0, 30
Then you want to retrieve the next thirty rows (page 2), then the offset is going to be 30.
SQL: LIMIT 30, 30