Welcome Guest, Not a member yet? Register   Sign In
Pagination in search result
#1

[eluser]_TTT_[/eluser]
Hi.
I have view where is a search form. Also contoller and model.
I do pagination for all my records

controller site
Code:
function records () {
            // Paginator settings
            $paginator_config['base_url'] = base_url().'site/records/';
            $paginator_config['total_rows'] = $this->db->get('recods')->num_rows();
            $paginator_config['per_page'] = 3;
            $paginator_config['num_links'] = 3;

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

  
   $data['records'] = $this->records_model->get_records($this->uri->segment(3),2);

}

its work, but how to do pagination for this:

Code:
function search() {
    $keywords = $_POST['keywords'];

    // get search result
    $data['result'] = $this->records_model->search_records($keywords);
}


Messages In This Thread
Pagination in search result - by El Forum - 09-22-2010, 09:31 AM
Pagination in search result - by El Forum - 09-22-2010, 09:40 AM
Pagination in search result - by El Forum - 09-22-2010, 09:46 AM
Pagination in search result - by El Forum - 09-22-2010, 09:48 AM
Pagination in search result - by El Forum - 09-22-2010, 09:52 AM
Pagination in search result - by El Forum - 09-22-2010, 10:00 AM
Pagination in search result - by El Forum - 09-22-2010, 10:10 AM
Pagination in search result - by El Forum - 09-22-2010, 10:16 AM
Pagination in search result - by El Forum - 09-22-2010, 10:24 AM
Pagination in search result - by El Forum - 09-22-2010, 10:34 AM
Pagination in search result - by El Forum - 09-22-2010, 10:34 AM
Pagination in search result - by El Forum - 09-22-2010, 10:43 AM
Pagination in search result - by El Forum - 09-22-2010, 11:39 AM
Pagination in search result - by El Forum - 09-22-2010, 11:59 AM
Pagination in search result - by El Forum - 09-22-2010, 01:37 PM



Theme © iAndrew 2016 - Forum software by © MyBB