Hi!
I need to be able to submit a multi-dimensional array directly from an HTML form.
example:
<form action=whatever.php>
<INPUT TYPE=hidden NAME=array1[subarray[2]]>
<input type=submit>
</FORM>
Simple enough, a two-dimensional array.
But when I do this, what I get is an array
$array1 with the key "subarray[subarray" in it.
"subarray" is not a key for another array...
Can u help?