我是 PHP Codeigniter 的新手。我正在尝试在我的网页中应用分页,因为我使用了以下代码
$config['base_url'] = base_url().'index.php/admin/pages/index/';
$config['total_rows'] = $this->pages_model->count_pages();
$config['per_page'] = '1';
$config['full_tag_open'] = '<p>';
$config['full_tag_close'] = '</p>';
$this->pagination->initialize($config);
$pageData['records']=$this->pages_model->get_pages($config['per_page'],$this->uri->segment(3));
在控制器中。在视图中我使用了以下代码$this->pagination->create_links()
但它没有显示分页链接。主要问题是无法分配 Pagignation 类 $total_rows 和 $per_page 中的类变量。它的值保持默认值,这是在 Pagingnation.php 文件中硬编码的。我现在不知道是什么问题。有没有办法克服这个问题?
enter code here