Welcome Guest, Not a member yet? Register   Sign In
Next and Previous Pagination
#1

[eluser]rafi_ccj[/eluser]
i have a page where a list of items will be displayed. when i will click on any single item there will be details of that single item. now i am trying to use next and previous of pagination to go to the next item details or previous item details. but it is not working....how to do it?


my code is below.
Code:
$this->load->library('pagination');
        $config['base_url'] = base_url() . 'url/url';
        $config['total_rows'] = $this->myMODEL->function();
        $config['display_pages'] = FALSE;
        $config['first_link'] = FALSE;
        $config['last_link'] = FALSE;
        $config['next_link'] = 'Next';
        $config['next_tag_open'] = '<div>';
        $config['next_tag_close'] = '</div>';
        $config['prev_link'] = 'Previous';
        $config['prev_tag_open'] = '<div>';
        $config['prev_tag_close'] = '</div>';
        $config['uri_segment'] = 5;
        $config['num_links'] = 5;
        $config['per_page'] = 1;
        $this->pagination->initialize($config);


Messages In This Thread
Next and Previous Pagination - by El Forum - 06-19-2012, 10:11 PM
Next and Previous Pagination - by El Forum - 06-19-2012, 10:34 PM



Theme © iAndrew 2016 - Forum software by © MyBB