Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to send complete POST to Model in Code Igniter

What would be the best way to send a complete post to a model in Code Igniter? Methods I know are as follow:

Name form elements as array, eg.

<input type="text" name="contact[name]">
<input type="text" name="contact[surname]">

and then use:

$this->Model_name->add_contact($this->input->post('contact'));

The other would be to add each element to an array and then send it to the model as such:

<input type="text" name="name">
<input type="text" name="surname">

and

$contact_array = array('name' => $this->input->post('name'),
                       'surname' => $this->input->post('surname'));
$this->Model_name->add_contact($contact_array);

Which one of these would be best practice, and is there a way to directly send a whole POST to a model (or a whole form maybe?)

like image 630
Constant Meiring Avatar asked May 21 '10 23:05

Constant Meiring


1 Answers

Simply pass $_POST variable to method that you want to work with all POST variables. I see your concern, but rest assured: $_POST is sanitized by security filtering function whenever controller is instantiated.

So:

$this->Model_name->add_contact($_POST);
like image 52
mr.b Avatar answered Oct 20 '22 15:10

mr.b