1
$pag = $this->db->get('articles', $config['per_page'], $this->uri->segment(4));
$data['records'] = $pag->result();
我已經與笨和活動記錄排序DB結果
$pag = $this->db->get('articles', $config['per_page'], $this->uri->segment(4));
$this->db->order_by('published', 'ASC');
$data['records'] = $pag->result();
嘗試要麼使用ASC
或desc
我沒有看到任何改變。
我在這裏做錯了什麼?
感謝