Simple pagination for your web api or web services
We all know about pagination and where we use :-p but if you are developing web api or web services in php here is a simple and easy way to create pagination. <?php $page = 1; // Default page start with 1 $limit = $limit; // Set Limit according to you 1 – 5 -10 […]
Continue Reading