Pagination with CodeIgniter
The Model
models/
model_page_name
.php
class class_name
extends CI_Model
{
public function __construct()
{
parent::__construct();
}
public function record_count()
{
return $this->db->count_all("table_name");
}
Comments
Post a Comment