Zend Framework [Forms] - How to make an array of form elements (textbox)?
How can I achieve the ff. in zend using zend form:
<input type="text" name="list[]" />
<inpu开发者_Go百科t type="text" name="list[]" />
you can do this with:
Zend_Form::setElementsBelongTo($array):
For more information visit:
http://framework.zend.com/manual/en/zend.form.advanced.html
精彩评论