tags:

views:

91

answers:

2

i have a database full of rows of data.

i need an open source php search and pagination script.

so all i need to do is hook it up to the database, and results will be paginated. also the searching function optimized already....

+2  A: 

Your question is so "freeform" so my answer is also. Take a look at the Zend Framework Pagintor and Search modules:

Paginator is very good and easy to use. Easy to integrate with somesort of caching and etc, but I have never really used search, so I cant comment on that.

DJRayon
A: 

Yii framework has exactly what you need. Take a look here:

http://www.yiiframework.com/doc/api/CPagination

Milan Babuškov