Is there any known issue or drawback for naming from elements like this:
<form method="POST" ... >
<input name="category[title]" ...>
<input name="category[desc]" ...>
</form>
The POST
result will be something like this:
Array
(
[category] => Array
(
[title] => 0
[desc] => 0
)
)
Does it work in all the major web browsers? Also is there any specific name for it?