How to Limit the paginate in cakephp ?
Assume that i have 400 records. I need to get only 25 records from 50th record to 75th record and need to display 5 recor
Use maxLimit in CakePHP v2.x .
maxLimit
public $paginate = array( // other keys here. 'maxLimit' => 10 );
read more about it here.