I have used arrays in the past for HTML form fields.
example: <input type="text" name="test[1]" />
This works fine when it use it in PHP after submitting the form using the variable: $test[1]
However lately I tried to use a Multidimensional array in the same way.
example: <input type="text" name="test[1][2]" />
But when I try and use the variable $test[1][2] it doesn't work? Is this not possible to do? Can I get the same desired result with a slightly different method?