By default the pagination links will be <a href="http://mysite/index.php/student/page/0">1</a>
and <a href="http://mysite/index.php/student/page/1">2</a>
If i use the search criteria, (id name), all the 2 are optional.
$config['base_url'] = base_url()."index.php/searchStudent/".$id."/'".$name."'/";
$config['total_rows'] = count($search1);
$config['per_page'] = '1';//display perpage
$config['num_links'] = 1;
$config['full_tag_open'] = '<p>';
$config['full_tag_close'] = '</p>';
$this->pagination->initialize($config);
$data['patient_result'] = $this->Student_Model->searchStudent($id,$name,$config['per_page'],$this->uri->segment(3));
But its not working
Whats wrong here?