इसे आजमाएं
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();