Published
- 1 min read
last insert id model codeigniter
The solution for this is noted below
last insert id model codeigniter
Solution
function add_post($post_data){
$this->db->insert('posts', $post_data);
$insert_id = $this->db->insert_id();
return $insert_id;
}
Try other methods by searching on the site. That is if this doesn’t work