Google News
logo
CodeIgniter - Interview Questions
How to extract the last inserted id in Codeigniter?
The DB Class insert_id() method is used in Codeigniter to get the last insert id.
 
Usage :
function add_post($post_data){
$this->db->insert('posts', $post_data);
$insert_id = $this->db->insert_id();
return $insert_id;
}
Advertisement