ItSolutionStuff.com

How to Get Last Inserted ID in Codeigniter?

By Hardik Savani • November 5, 2023
Codeigniter

Sometimes, we require to get last insert record id from database in controller, so in this example we will learn how to get last inserted row id in Codeigniter 3 project.

It's very often need to get last insert id in programming field, if you are working on Codeigniter framework and you want to fetch last created id, i mean max id, then you do easily.Codeigniter provide method insert_id() to get last inserted id.

insert_id() is function of "db" library. db library provides several function for connecting database task. insert_id() will return id of last inserted record. So here i give controller method so you can understand how it is working.

Controller Method

function add_item(){

$input = ['name'=>'Test', 'description'=>'This is Test'];


$this->db->insert('items', $input);

$insertId = $this->db->insert_id();


return $insertId;

}

As above example you can get simply last inserted row id using "insert_id()", So let's use this way.

I hope it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Codeigniter Ajax Pagination using JQuery Example

Read Now →

Codeigniter Delete Multiple Rows using Checkbox Example

Read Now →

How to Get and Set Config Variables in Codeigniter?

Read Now →

How to Get Current Controller or Method Name in Codeigniter?

Read Now →

Codeigniter Dynamic Dependent Dropdown using Ajax Example

Read Now →

How to Get Last Record in Codeigniter?

Read Now →

Codeigniter Generate PDF from View using Dompdf Example

Read Now →

Codeigniter Ajax CRUD Tutorial Example

Read Now →

Codeigniter Select2 Ajax Autocomplete from Database Example

Read Now →

How to Get Current URL with Query String in Codeigniter?

Read Now →

How to Get Current URL in Codeigniter?

Read Now →

How to Get Last Inserted Id in Laravel?

Read Now →

How to Get Query Log in Laravel Eloquent?

Read Now →