[eluser]RaF007[/eluser]
I might be wrong but I think you can only grab the whole array at once using $this->input->post(). Let's say your POST contains an array FIELD containing several values (FIELD[0], FIELD[1], ...), you would have to do the following:
Code:
// WILL NOT WORK
echo $this->input->post('FIELD[0]');
// THIS SHOULD WORK
$myarray = $this->input->post('FIELD');
echo $myarray[0];
echo $myarray[1];
If I'm incorrect, I'm interested into seeing a solution for this as well.