Zend form input name with same name
问题 Using Zend 1.9 I am trying to generate a form using Zend Form module . My form should be like this: <form method="post" action="myaction"> <input type="text" name="editors[]" /> <input type="text" name="editors[]" /> <input type="text" name="editors[]" /> <input type="text" name="editors[]" /> <button type="submit" >Go</button> </form> When I submit the form in my controller I want to see something like this: Zend_Debug::dump($this->getAllParams()); //I expect this output: array (size=4)