我想在我的网页中使用分页,因为我使用了以下代码
$config['base_url'] = base_url().'index.php/admin/pages/';
$config['total_rows'] = 5;//$this->pages_model->count_pages();
$config['uri_segment'] = 3;
$config['per_page'] = '2';
但问题是数组变量 $total_page 和 $per_page 没有赋值,因此无法显示分页链接。我的意思是在 create_links() 中我无法获得上面分配的新值。有没有办法克服这个问题?