我是CI的大一新生。今天学习CI教程时遇到这样的错误。您必须使用“set”方法来更新条目。
文件名:F:\xampp\htdocs\ISA2013\ISA2013\system\database\DB_active_rec.php
行号:1174
我的模型代码是这样的。
class Apply_model extends CI_Model {
public function add_record($data){
$query = $this->db->insert('help_user');
//return;
}
}
我只是在 Control 中这样编码:
public function create(){
$data = array('USER_NUMBER' => $this->input->post('stuNO'),
'USER_EMAIL' => $this->input->post('email'),
'USER_INFO' => $this->input->post('info')
);
$this->apply_model->add_record($data);
$this->index();
}
..当我运行类/创建时,我得到了错误的顶部..有人可以帮助我吗?