I am using Zend_Paginator in my web-page, where I get the same records in each page....
For Eg. I got the same 4 records in different pages...?
$page=$this->_getParam('page',1);
$paginator = Zend_Paginator::factory($userDetails);
$paginator->setItemCountPerPage(4);
$paginator->setCurrentPageNumber($page);
$this->view->paginator = $paginator;
What may be the problem?
Please help.....
Thanks in advance.....
If this records you get fro DB, you should make limitPage($page, $rowCount)
. Or if your data not from DB, you should filtering it by other way. Sorry for my english.