这是我的控制器
function new_post(){
if($_POST){
$data=array(
'title'=>$_POST['title'],
'post'=>$_POST['post'],
'active'=>1);
$this->post->insert_post($data);
redirect('post/');
}
else {
$this->load->view('new_post');
}
}
这不起作用,这个控制器很好, 模型 这是它插入表单的唯一模型。
function insert_post($data){
$this->db->insert('posts',$data);
return $this->db->insert_id();
}
如果我将其更改为
$data=array(
'title'=>$_POST['title'],
'post'=>$_POST['post'],
'active'=>1);
$this->post->insert_post($data);
然后它工作
我是否在第一个控制器上犯了任何错误,因为它没有插入......
问候