$pag = $this->db->get('articles', $config['per_page'], $this->uri->segment(4));
$data['records'] = $pag->result();
I already tried with
$pag = $this->db->get('articles', $config['per_page'], $this->uri->segment(4));
$this->db->order_by('published', 'ASC');
$data['records'] = $pag->result();
either use ASC
or desc
I dont see any change.
Am I doing something wrong here?
Thanks