I need an array of check-box that should look like as following:
<input type="checkbox" name="myname[]" >
Currently I am using
new Zend_Form_Element_Checkbox('myname[]');
but it doesn't show the array in html control. It draw this as
<input type="checkbox" name="myname">
AnySolution?