【发布时间】:2021-03-02 12:40:19
【问题描述】:
控制器
$this->load->model('Customer_model');
$users = $this->Customer_model->recently_registered();
$this->load->view('dashboard', $users);
在 desc order limit 5 中显示客户 型号
$this->db->select('*');
$this->db->from('customer');
$this->db->order_by('date_added', 'desc');
$this->db->limit(5);
$query = $this->db->get();
【问题讨论】:
-
你在上面的代码中遇到了什么错误?
标签: mysql codeigniter