There is no license information available for the latest version (dev-master) of this package.

paginate

Maintainers

Package info

github.com/codeigniter-packages/paginate

Type:codeigniter-library

pkg:composer/codeigniter-packages/paginate

Statistics

Installs: 122

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-master 2020-11-19 06:15 UTC

This package is auto-updated.

Last update: 2026-03-19 17:44:41 UTC


README

How to use

composer require codeigniter-packages/installer
composer require codeigniter-packages/loader
composer require codeigniter-packages/paginate
$this->load->package('codeigniter-packages/paginate');

$this->db->start_cache();

$this->paginate->filter(array('id','title'));
$this->db->from('tablename');

$this->db->stop_cache();
$this->db->order_by('id');

$this->paginate->get();