I need to create a multidimensional array form using zend framework. When I post the form I should be able to get the following result as post.
Array
(
[Address] => Array
(
[customer] => Array
(
[name] => Customer Name
)
[guest] => Array
(
[name] => Guest Name
)
)
)
For some reason I am not able to get the above result. So far the result I get is this.
Array
(
[customer_name] => Customer Name
[guest_name] => Guest Name
)
So my question is does Zend_Form support multidimensional form array? If yes how?
Thanks in advance...