Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to receive post/get request in codeigniter

Im using

$this->input->post('name') ; to get a request posted to my url.Instead of post I need to access get as well.

Like in normal php its ,$_REQUEST is used.But what about in codeigniter standards,how is it possible?

like image 529
Piya Avatar asked Jan 23 '26 11:01

Piya


1 Answers

It's outlined in the docs here: http://ellislab.com/codeigniter/user-guide/libraries/input.html

To grab data from the get you can use

$this->input->get('some_data', TRUE);

That looks for some_data in the query string, and will run is through XSS filtering to clean it from possible hack attempts

There's also a handy method to check both at the same time:

$this->input->get_post('some_data', TRUE);

"This function will search through both the post and get streams for data, looking first in post, and then in get"

like image 143
duellsy Avatar answered Jan 25 '26 02:01

duellsy



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!