ItSolutionStuff.com

Codeigniter Check Request is Ajax or Not Example

By Hardik Savani • November 5, 2023
Codeigniter Ajax

Sometimes, we need to check request is ajax or not in codeigniter 3 application. If you want to call same method but if request is ajax then you perform different, then you can do by using $this->input object.

In Codeigniter 3 $this->input object provide is_ajax_request() method to check request is ajax or not, In following example you can see how it's works.

You can check see bellow controller method example so you can learn how to use is_ajax_request() and determine request is from ajax or not.

Example:

/**

* Get All Data from this method.

*

* @return Response

*/

public function ajaxRequestPost()

{

if ($this->input->is_ajax_request()) {

$data = array(

'title' => $this->input->post('title'),

'description' => $this->input->post('description')

);

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

echo 'Added successfully.';

}else{

echo 'You can not access';

}

}

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 Create Zip File and Download Example

Read Now →

Codeigniter Ajax Pagination using JQuery Example

Read Now →

Codeigniter Delete Multiple Rows using Checkbox Example

Read Now →

Codeigniter JQuery Ajax Request Example

Read Now →

How to Create Dynamic Sitemap in Codeigniter?

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 Get Current Controller or Method Name in Codeigniter?

Read Now →

How to Implement Flash Messages in Codeigniter?

Read Now →

Codeigniter Ajax Infinite Scroll Pagination Example

Read Now →

How to Get Last Inserted ID in Codeigniter?

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 IP Address in Codeigniter?

Read Now →