How to get last inserted id in CodeIgniter?

devquora
devquora

Posted On: Apr 25, 2024

 

CodeIgniter DB Class insert_id() method is used to get last insert id.

Usage:

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

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    CodeIgniter Interview Questions

    How to check the version of CodeIgniter framework?

    How to check the version of CodeIgniter framework?..