CI框架增加條件搜尋,分頁

2022-05-04 11:54:06 字數 781 閱讀 8419

在網上找了半天,沒有乙個能寫明白的,到的怎麼使用帶條件分頁,我這裡用簡單說明實現它!

1.使用ci框架分頁類,如果帶搜尋條件,首先要可以接收搜尋內容

$cateid = $this->input->get_post('select_cate');

$searchkey = $this->input->get_post('searchkey');

$offset = $this->input->get_post('per_page');

2.實現搜尋分頁**

$this->load->library("pagination");

$config['base_url'] =site_url('shop/shopmanagereply')."?select_cate=$cateid&searchkey=$searchkey";

$config['total_rows'] = $data['total'];

$config['per_page'] = 20;

$config['first_link'] = '首頁';

$config['last_link'] = '尾頁';

$config['page_query_string'] = true;

$this->pagination->initialize($config);

$data['links'] = $this->pagination->create_links();

安裝這段**開發,就可以實現帶條件搜尋分頁了,簡單吧!

分頁,搜尋後保留搜尋條件分頁

先寫乙個簡單的分頁,供初學者參考 header content type text html charset utf8 建立乙個資料來源,若資料來自於mysql 此處請改為mysql獲取資料 注意limit使用 limit offset,length offset 為偏移量,從第幾個開始 下標從0開...

CI框架分頁類的使用 1

首先,要查詢資料庫,確定一共有多少條資料 this load model test model user this test model user select all pageall count user 總條數 pagenum 20 每頁顯示的條數 其次,進行config的配置 config t...

THINKPHP實現搜尋分頁保留搜尋條件

使用tp自帶的分頁類時,裡面自帶了post查詢條件保留機制,但是之針對於普通的map一維陣列,如果包含like,gt等等比較複雜的查詢條件則力不從心了.如果是post方式查詢,如何確保分頁之後能夠保持原先的查詢條件呢,我們可以給分頁類傳入引數,方法是給分頁類的parameter屬性賦值 count ...