у меня ниже коды
foreach ($this->getChitsInstallment() as $key => $installment) {
$checkElement = new Zend_Form_Element_Checkbox("installment[]");
$checkElement->setAttrib('id', 'installment_'.$key)->setDecorators($decorators->elementDecorators);
$this->addElement($checkElement);
$checkElements[] = $checkElement->getName();
$textElement = new Zend_Form_Element_Text("installmentvalue[$key]");
$textElement->setAttrib('readonly', 'true')->setAttrib('class', 'inp-form');
$textElement->setAttrib('id', 'text_'.$key)->setDecorators($decorators->elementDecorators);
$textElement->setValue($installment);
$textElement->setLabel("Installment $key: ");
$this->addElement($textElement);
$textElements[] = $textElement->getName();
}
Я хочу вывод типа
<input type="checkbox" name="installment[]" id="installment_1" />
<input type="checkbox" name="installment[]" id="installment_2" />
<input type="checkbox" name="installment[]" id="installment_3" />
В связи с этим я просто звоню <?php echo $this->form ?>
Только
Пожалуйста, дайте мне решение для этого
С уважением
Nisanth