How to get last inserted id in CodeIgniter?

Member

by braeden , in category: Technology , 4 years ago

How to get last inserted id in CodeIgniter?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by kade.hermiston , 4 years ago

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

Usage:

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

Related Threads:

How to set or get config variables in Codeigniter?
How to get random records in MySQL using CodeIgniter?
How to Write a for Loop in Bash in 2025?
How to Set Up a Gps Tracker for My Pet in 2025?
How to Integrate a Third-party Api with Ruby on Rails?
How to Maintain a Propane Grill to Last Longer in 2025?