Taco
0
Q:

return last insert id in codeigniter

$id = $this->db->insert_id();
3
   $this->db->insert('posts', $post_data);
   $insert_id = $this->db->insert_id();
   return  $insert_id;
0
function add_post($post_data){
   $this->db->insert('posts', $post_data);
   $insert_id = $this->db->insert_id();

   return  $insert_id;
}
0

New to Communities?

Join the community