codeigniter pagination: create links
问题 I have this piece of code, which uses Codeigniter's native Pagination Class. $this->load->library('pagination'); $config['base_url'] = base_url().'notification/display_notification_info/'.$notification_id; $config['total_rows'] = $totalRows; $config['per_page'] = $per_page; $this->pagination->initialize($config); echo $this->pagination->create_links(); It shows the last page by default. So, the links are displayed like so: < 1, 2, 3 It doesn't show the last page's URL. It should be: base_url