views:

294

answers:

3

I am looking for a php pagination class, I have used a rather simple one in the past and it is no longer supported.

I was wondering if anyone had any recommendations ?

It seems pointless to build my own when there are probably so many good ones out there.

Thanks in advnace!

+1  A: 

Have you tried PEAR::Pager? Usage examples here.

Jordan
+1  A: 

I would suggest Zend_Paginator for the following reasons

  • It's loosely coupled and doesn't require the entire library.
  • The ZF community is larger than the PEAR community and is actively running security audits on code, and releasing maintenance versions.
  • It separates data sources by using the Adapter Pattern, and there are numerous examples of front end UI pattern implementations in the documentation.
Travis
A: 

After more searching I decided that before I use a frameworked version I should fully understand what is involved in a paginator. So I built one myself. Thanks for the suggestions though!

Lizard