in codeigniter I have to post an two-dimensional array array[$index][$index]
to some variable.
How do I post the value from the array on $val[$index][$index];
?
I have to try with some code like this, but didnt work corectly :
$val[$x][$y] = $this->input->post('criteria'[$i][$j]);
Any thoughts on how I should try to get this working?
Thanks!