I need a check-box array that should look like this:
<input type="checkbox" name="myname[]" >
I am currently using
new Zend_Form_Element_Checkbox('myname[]');
but it does not display the array in the html control. He draws it like
<input type="checkbox" name="myname">
AnySolution?
source share