このZendフォーム要素に問題があります。Multicheckboxの要素ステータスを読み取るにはどうすればよいですか?
$type= new Zend_Form_Element_MultiCheckbox('typer');
$type->setLabel('Type');
$type->addMultiOptions(array(
'1' => 'type1',
'2' => 'type2'
));
ご支援ありがとうございます!...