PaginateIt 1.1.1

Developer : Brady Vercher

License : Other Free / Open So , price : Free $

Size : PHP , OS : Windows/Linux/Mac OS/BSD/Solaris

Date added: 2008-07-23

Category : PHP Classes

Download link - Download this software


Description


PaginateIt is a simple PHP class written to make pagination easy.  Pagination allows you to break up a collection of data (gallery, news items, etc...) into different pages.  It can work in conjuction with a database, flat files, or any other collection. This class will allow you to easily implement pagination and help keep your code cleaner.


Usage


<?php
include('PaginateIt.php');
$PaginateIt = new PaginateIt();
$PaginateIt->SetItemCount(x);
echo $PaginateIt->GetPageLinks();
?>