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

paginate

Installs: 122

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 1

Open Issues: 0

Type:codeigniter-library

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

This package is auto-updated.

Last update: 2024-09-19 14:24:11 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();