これを試してください
function add_post($post_data){
$this->db->insert('posts', $post_data);
$insert_id = $this->db->insert_id();
return $insert_id;
}
複数のインサートの場合は、
を使用できます。$this->db->trans_start();
$this->db->trans_complete();
これを試してください
function add_post($post_data){
$this->db->insert('posts', $post_data);
$insert_id = $this->db->insert_id();
return $insert_id;
}
複数のインサートの場合は、
を使用できます。$this->db->trans_start();
$this->db->trans_complete();