Hi,
I need to build a form where some elements appear more than once, in a mutidimensional array.
E.g.:
$person[0][firstname]
$person[1][firstname]
$person[2][firstname]
The size of the multi-dimensional array is determined by the user, i.e. it is not fixed. There could be 2 $person, or 20.
How can I validate this array when the form is submitted? The fieldset/validation form builder seems to allow only normal (non-multi-dimensional) POST arrays.
Thanks.
I am playing about with Modules and using Session::create() to store the _POST results. So far it seems to be ideal.
I had to change from multi dimensional _SESSION arrays because of a remote host problem