In My Controller:
public function testpages()
{
$config['base_url'] = "http://www.domain.com/index.php/testpages";
$config['total_rows'] = COUNT($data['names']);
$config['per_page'] = 1;
$this->pagination->initialize($config);
$data['links'] = $this->pagination->create_links();
$this->load->view('nameshow',$data);
}
I want to show the names one by one,but when i click on number links generated by the pagination it shows the url like this:
http://http://www.domain.com/index.php/testpages/1
http://http://www.domain.com/index.php/testpages/2
I just want to change the uri segment as:
http://http://www.domain.com/index.php/testpages/firstnamevalue
http://http://www.domain.com/index.php/testpages/secondnamevalue
How can i show the url according to my need. with using of pagination, is there any way exist's in codeigniter. if yes then how.?