フォーム フィールドを MySQL テーブルに挿入するために使用される挿入クエリ (アクティブ レコード スタイル) があります。挿入操作の最後の自動インクリメント ID をクエリの戻り値として取得したいのですが、いくつか問題があります。
コントローラーの内部:
function add_post(){
$post_data = array(
'id' => '',
'user_id' => '11330',
'content' => $this->input->post('poster_textarea'),
'date_time' => date("Y-m-d H:i:s"),
'status' => '1'
);
return $this->blog_model->add_post($post_data);
}
そして内部モデル:
function add_post($post_data){
$this->db->trans_start();
$this->db->insert('posts',$post_data);
$this->db->trans_complete();
return $this->db->insert_id();
}
モデルの add_post の戻り値として何も取得しません