|
本帖最后由 haoren26 于 2011-9-25 21:19 编辑
CI版本:2.0.3
OS版本:win2003(虚拟机)
看一哈子视频第二部新闻发布系统的时候,在页面上添加评论,后台向数据库插入数据时经常遇到error 1054
代码是照着视频照抄的
Mhome.php 函数 insert_comment()
function insert_comment()
{
$content = $this->input->post('comment_content');
$article_id = $this->input->post('article_id');
$author = $this->input->post('comment_author');
$query = $this->db->query("INSERT INTO comments(id,article_id,content,author,last_date) VALUES('',$article_id,$content,$author,now())");
return $this->db->affected_rows();
}
控制器home.php调用 insert_comment方法代码
function comment_ok()
{
if ($this->input->post('submit')) {
$this->load->model('Mhome');
$query = $this->Mhome->insert_comment();
if ($query) {
redirect('home/content/'.$this->input->post('article_id'));
}
}
}
但当我想网页表单提交表单时,有时行,有时就会报错(例如输入评论12331,作者sdf)
Error Number: 1054
Unknown column 'sdf' in 'field list'
INSERT INTO comments(id,article_id,content,author,last_date) VALUES('',2,12331,sdf,now())
估计是INSERT语句有问题,但仔细跟视频里比对过,没什么不一样啊。。不得其解,非常郁闷,大家教教我这是怎么回事??
会不会是数据库字段编码的问题??
PS:”有时候行“是指浏览器第一次添加评论,且添加的评论为纯数字
|
|