嗨,我只想问一下codeigniter分页链接。
这是我的控制器:
$configp['base_url'] = base_url().'post';
$configp['total_rows'] = $this->db->where('status',0)->get('room_post')->num_rows();
$configp['per_page'] =5;
$configp['uri_segment'] = 2;
$this->pagination->initialize($configp);
$data['pendinglink'] = $this->pagination->create_links();
我想在分页示例段之前添加文字如果我创建此链接它将生成此链接
<strong>1</strong>
<a href="http://localhost/istay/post/5" data-ci-pagination-page="2">2</a>
<a href="http://localhost/istay/post/5" data-ci-pagination-page="2" rel="next">></a>
我想在“http://localhost/istay/post/5”的“5”之前添加“pendingpost”,因此它的结果为“http://localhost/istay/post/pendingpost/5”
我搜索它,我发现“config ['first_url']”但我不完全理解它,我认为它只会修改链接的第一个网址。我希望有人能帮帮忙。 THX。
答案 0 :(得分:1)
从
改变$configp['base_url'] = base_url().'post';
到
$configp['base_url'] = base_url().'post/pendingpost';