Hãy thử điều này
function add_post($post_data){
$this->db->insert('posts', $post_data);
$insert_id = $this->db->insert_id();
return $insert_id;
}
Trong trường hợp có nhiều phụ trang, bạn có thể sử dụng
$this->db->trans_start();
$this->db->trans_complete();