A Database Error Occurred Error Number: 1064
插入数据库出现这样的错误,谁知道原因呢?一下为源代码:
$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);
控制器初始化函数中有没加$this->load->database(); 回复 NicholasWay 的帖子
有啊..... )value(
改成
)values( 还是不行,我用的是fck编辑器,内容长了他就提示这个,是不是和fck有关系
页:
[1]