How to paginate your SQL querys
On this post you will learn how to paginate an SQL query instead of showing all the rows, in order to avoid wasting time on the page load and at the same time save bandwidth.
Basically, we have to limit the SQL query and generate new queries similar to the original that gather the rest of rows to paginate.
Maybe this is not the best way to do this, but at least I will try to show you my own way.
more...


