En mi modelo filtre resultados de mi paginacion con uri_to_asocc de la siguiente manera:
Código PHP:
public function get_ficha_listado($number_items,$offset,$arr_where) {
$this->db->select('id, title ,descripcion');
$arr_where = $this->uri->uri_to_assoc(3);
if($arr_where){
foreach ($arr_where as $key=>$row){
if($row && $row<>'')
$this->db->where($key, $row);
}
}
return $this->db->get('tabla', $number_items,$offset,$arr_where);
}
Código PHP:
public function get_total_number_news(){
return $this->db->count_all('tabla');
}
Alguién sabe como hacerlo? utilizando
$arr_where = $this->uri->uri_to_assoc(3);
Muchas gracias por anticipado!!!