Quantcast
Channel: Web Development Tips » CakePHP
Viewing all articles
Browse latest Browse all 6

Pagination in CakePHP

$
0
0
In the controller file like I have Employeecontroller.php, write the following code: <?php class EmployeeController extends AppController { public $paginate = array( ‘limit’ => 2, ‘order’ => array( ‘Employee.id’ => ‘asc’ ) ); public function index() { $data = $this->paginate(‘Employee’); $this->set(‘employeeList’, $data); } } ?> Now in the view file like I have index.ctp, write […]

Viewing all articles
Browse latest Browse all 6

Trending Articles