[eluser]RS71[/eluser]
Hello,
I am currently trying to use $this->input->post() in my controller but it doesn't seem to be working.
I currently have it so a select has a name of grau[] (an array).
In the controller, I try to do something like:
Code:
$data['grau_field'] = 'grau[]';
$data['education_count'] = count( $this->input->post($data['grau_field']) );
It doesn't seem to be showing the correct count, even though I can see that the POST values are there. (via the Profiler)
Could anybody please assist me?
Thanks in advance.