Reputation: 11
How can I achieve the ff. in zend using zend form:
<input type="text" name="list[]" />
<input type="text" name="list[]" />
Upvotes: 1
Views: 1940
Reputation: 20726
you can do this with:
Zend_Form::setElementsBelongTo($array):
For more information visit:
http://framework.zend.com/manual/en/zend.form.advanced.html
Upvotes: 3