ItSolutionStuff.com

How to Get Current Month Records in Codeigniter?

By Hardik Savani • November 5, 2023
Codeigniter

In this example, we will learn how to get current month data in codeigniter. we can get current month data using codeigniter query builder. we will use MONTH() and YEAR() mysql function for getting current month data.

I will share with you simple example example of getting current month data in codeigniter 3 application. sometime it might be require to get and display only current month data in your php codeigniter 3 application.

You can see bellow example database query to getting current month data from database items table.

Example:

$data['data'] = $this->db->select('*')

->where('MONTH(created_at)', date('m'))

->where('YEAR(created_at)', date('Y'))

->get("items")

->result();

print_r($data['data']);

exit;

Output:

Array

(

[0] => stdClass Object

(

[id] => 2

[title] => Codeigniter 3 CRUD Example

[description] => Codeigniter 3 CRUD Example From Scratch To follow : Itsolutionstuff.com

[created_at] => 2019-07-11 00:00:00

[updated_at] => 0000-00-00 00:00:00

)

)

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 Upload Multiple File and Image Example

Read Now →

How to Get Single Row from Database in Codeigniter?

Read Now →

How to Create a Custom Library in CodeIgniter?

Read Now →

How to Get Last Executed Query in Codeigniter?

Read Now →

How to Get All Tables List in Codeigniter?

Read Now →

Codeigniter Create Zip File and Download Example

Read Now →

Codeigniter Confirm Box Before Delete Record Example

Read Now →

Codeigniter Multiple Database Connection Example

Read Now →

How to Get and Set Config Variables in Codeigniter?

Read Now →

Codeigniter Drag and Drop Multiple Image Upload Example

Read Now →

How to Implement Flash Messages in Codeigniter?

Read Now →

How to Get Last Record in Codeigniter?

Read Now →

How to Get Last Inserted ID in Codeigniter?

Read Now →

How to Get Current URL with Query String in Codeigniter?

Read Now →