class Abc extends CI_Model{
}
Model 加"CI_"前缀,即可解决问题 $data = array(
'name' => $this->input->xss_clean($this->input->post('name')),
'email' => $this->input->xss_clean($this->input->post('email')),
'notes' => $this->input->xss_clean($this->input->post('notes')),
'ipaddress' => $this->input->ip_address(),
'stamp' => $now
); 还需要改构造函数~~
function __construct(){
parent::__construct();
} 真狠,09年的问题这样顶上来了.估计楼主也解决了..
页:
1
[2]