kohana-paginate icon indicating copy to clipboard operation
kohana-paginate copied to clipboard

Pages & fixes

Open saruman opened this issue 9 years ago • 0 comments

Get total pages and paginate by page.

$data = DB::select()->from('table');

$data = Paginate::factory($data)->page(1, 10)->execute();

$result = $data->result();
$total_pages = $data->count_pages();

Also, remove mysql_real_escape_string (conflict with mysqli).

saruman avatar Jun 02 '15 15:06 saruman