testing php

Php code posted
created at 31 Jul 10:55

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
    $selectGroup = new Zend_Form_Element_Select("groupselect", array(
        'required' => true,
        'label' => 'Select Group'
    ));
    foreach ($Groupslist as $keys):
        $selectGroup->addMultiOption($keys->getId(), $keys->getName());
    endforeach;
    $this->addElement($selectGroup);
    $groupSub = new Zend_Form_Element_Submit("submit");
    $groupSub->setName("Submit");
    $this->addElement($groupSub);
436 Bytes in 2 ms with coderay