我的代碼存在一些問題,我無法解決。 我使用CI 1.7.2。 我已經在系統中正確實施了CI分頁。 結果顯示正常,但分頁中的鏈接無法正確顯示。Codeigniter分頁
例如,如果我在頁面上點擊2,則結果顯示爲每第2頁,但目前的鏈接頁碼數保持爲1應更改爲2
下面是已經實施的代碼
$total = $this->bmodel->countResultsBanner();
$data['total'] = $total;
$uri_segment = $this->uri->segment(4);
if($uri_segment == 0 || empty($uri_segment)){
$uri_segment = 0;
}
$perPage = 5;
$config['base_url'] = base_url()."index.php/modules/banner/index";
$config['total_rows'] = $total;
$config['per_page'] = $perPage;
$config['num_links'] = 4;
//$config['cur_tag_open'] = '<b><span class="current_page">';
//$config['cur_tag_close'] = '</span></b>';
$this->pagination->initialize($config);
$result = $this->bmodel->getAllBanners($perPage,$uri_segment);
$data['result'] = $result;
提前致謝。
Ĵ
你能提供更多信息嗎?編碼部分 – royrui 2011-05-27 12:39:09
@royrui我已將代碼添加到最初的問題中。請檢查。謝謝J – 2011-05-27 12:46:17