ItSolutionStuff.com

How to Get Last Record in Codeigniter?

By Hardik Savani • November 5, 2023
MySql Codeigniter

In this post we are going to learn how to get last single record from MySQl database table using Codeigniter database library.

We sometime require to get only single row result in our Codeigniter application. In this post you can see how to get whole last record using Codeigniter db query. Few day ago i posted "How to get last inserted id in Codeigniter?", in that post we can simply get last inserted id from Codeigniter db query.

In this database query i used order_by(), limit(), get() and row(). order_by() will help to make order by id as descending, limit() will help to get only single result, get() will help to select specific table and row() will help to get single row of result.

So, let's see bellow Codeigniter database query for getting last record:

Example:

$this->load->database();

$last = $this->db->order_by('id',"desc")

->limit(1)

->get('items')

->row();

print_r($last);

You can easily use above Codeigniter database query for fetch single record. So you can simple use as like above normal example.

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 Google Recaptcha Form Validation Example

Read Now →

Codeigniter Ajax Pagination using JQuery Example

Read Now →

Codeigniter Delete Multiple Rows using Checkbox Example

Read Now →

Codeigniter Drag and Drop Multiple Image Upload Example

Read Now →

Codeigniter JQuery Ajax Image Upload Example

Read Now →

Codeigniter Ajax Infinite Scroll Pagination Example

Read Now →

Codeigniter Image Upload with Validation Example

Read Now →

How to Get Last Inserted ID in Codeigniter?

Read Now →

Codeigniter Generate PDF from View using Dompdf Example

Read Now →

Codeigniter Ajax CRUD Tutorial Example

Read Now →

How to Get Current URL in Codeigniter?

Read Now →

How to Get Last Record from Database in Laravel?

Read Now →

How to Get IP Address in Codeigniter?

Read Now →

How to Get Last Executed Query in Laravel?

Read Now →

Codeigniter 3 and AngularJS CRUD with Search and Pagination Example.

Read Now →