How to get last insert ID in PHP Codeigniter?

In this article, we are going to discuss how to get the last inserted ID in Codeigniter. I will let you know how to get the last inserted id from the table. Sometimes, You have to work on relational tables where you perform the insert query on a table and you need that automatically generated ID to insert into the second table to create a relation between both tables.

In PHP, you can use the mysqli_insert_id function to get the last inserted ID.

In Codeigniter, You can use $this->db->insert_id(); function to get the last inserted ID.

insert_id() is function of "db" library. There is a number of query helper methods in Codeigniter.

function saveUserInfo(){
   $input = ['name'=>'blazing coders', 'email'=>'info.blazingcoders@gmail.com'];
   $this->db->insert('users', $input);
   $insertId = $this->db->insert_id();
   return  $insertId;
}

Tags

  • How to get last insert id in Codeigniter controller

  • Get last row id in Codeigniter

  • How to get last inserted record in Codeigniter

  • Last insert id in Codeigniter 4
  • How to insert id from one table to another in Codeigniter
  • Codeigniter get next auto-increment id

  • How to get last updated id in Codeigniter

  • Codeigniter get next id

  • PHP MySQL last insert id how to get last inserted id in PHP Codeigniter
  • Mysql select last insert id from the table
  • How to get the last record in MySQL using PHP

  • How to get last inserted id in SQL

  • How to get last inserted record in MySQL

  • How to get last updated record id in PHP
  • Pdo last insert id returns 0

Related Posts

How a Professional Web Development Company in Tamil Nadu Can Help Your Brand Stand Out

How a Professional Web Development Company in Tamil Nadu Can Help Your Brand Stand Out

A solid online presence is crucial for brands looking to expand and compete in the digital age. Working with a seasoned web development firm can give businesses in Tamil Nadu, where digital entreprene

Read More
Who Provides the Best AI-Powered Event Management Software? A Complete Guide

Who Provides the Best AI-Powered Event Management Software? A Complete Guide

Events have changed completely in the last few years. From small workshops to large corporate summits, everything now demands automation, personalization, speed, and accuracy. Organizers no longer wan

Read More
Why Do Businesses Need an AI-Powered Learning management software?

Why Do Businesses Need an AI-Powered Learning management software?

Modern businesses are under constant pressure to train faster, scale smarter, and stay competitive. Whether it’s onboarding new hires, upskilling teams, or delivering consistent knowledge across

Read More