I am having trouble setting up pagination on codeigniter when I pass parameters in the URL
if my url is like this : search/?type=groups
search/?type=groups
what sho
IN YOUR CONTROLLER:
$config['anchor_class'] = "class='link-pagination'";
IN YOUR VIEW:
$(".link-pagination").each(function() { $(this).attr("href", $(this).attr('href') + "?id== $this->input->get('id') ?>"); });