|
插入数据库出现这样的错误,谁知道原因呢?
一下为源代码:
$title=$this->input->post('title');
$source=$this->input->post('source');
$content=$this->input->post('content');
$type=$this->input->post('type');
$sql="insert into `news`(`title`,`source`,`content`,`type`,`add_time`)value('".$title."','".$source."','".$content."','".$type."',NOW())";
return $this->db->query($sql);
|
|