我可以在Codeigniter中对列表进行分页吗? 我试图对列表进行分页而不是表格,但仍然没有工作。
这是我的View.php:
<ul>
<?php if(count($usernamelist) > 0)
{?>
<li><?php echo $usernamelist ?></li>
<?php } ?>
</ul>
<?php echo links ?>
这是我的Controller.php的分页:
$config['base_url'] = base_url()."abouthistory/index";
$config['total_rows'] = 15;
$config['per_page'] = 6;
$this->pagination->initialize($config);
$page = ($this->uri->segment(4)) ? $this->uri->segment(4) : 0;
$data['links'] = $this->pagination->create_links();
有没有办法将我的列表配置为分页?
答案 0 :(得分:0)
“仍然无法正常工作”是任何人在寻求帮助时可以做出的最无用的评论。
分页是一种控制数据库中数据的方式,并为您提供导航元素。您可以以任何方式显示您获得的结果。
你没有包含你从哪里获得$ usernamelist,但我假设这是一个结果集或数组,所以你需要预先知道它,而不是回显数组。