我的代码出现错误,不知道为什么。这是错误:
Fatal error: Call to undefined method Display::index() in
这是导致错误的控制器部分:
function delete(){
$this->load->model('display_model');
$this->display_model->delete_row();
$this->index();
}
和模型部分,如果需要,以防万一:
function delete_row()
{
$this->db->where('QID', $this->uri->segment(3));
$this->db->delete('tblquestions');
}