vote up 2 vote down star

CodeIgniter allows access to POSTed data via:

$this->input->post('input_name');

where 'input_name' is the name of a form field. This works well for a static form where each input name in known ahead of time.

In my case, I am loading a collection of key/value pairs from the database. The form contains a text input for each key/value pair.

I am wondering, is there a way to get an array of posted data via the CodeIgniter api?

Thanks!

flag

2 Answers

vote up 3 vote down check

According to the documentation, no. I would suggest just using array_keys($_POST) to get the keys.

link|flag
Simple and straightforward. I like it. – GloryFish Nov 18 '08 at 19:43
vote up 1 vote down

Surely if you have an array of keys from the database you can use that, like :

foreach ($arrayFromDb as $key => $value) {
    $newValue = $this->input->post($key);
}

Then you have the advantage that people if people submit additional fields (e.g. by modifying the form and posting it themselves) those fields will be ignored

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.