Pages

Friday 20 July 2012

Create Form & Form Elements


//create a form object
$form = new Zend_Form
$form->setAction('/resource/process')
     ->setMethod('post');

$form->setAttrib('id', 'login');
?>


//Form support Following elements
button,
checkbox (one/many),
hidden,
image,
password,
radio,
reset,
select (single select/many select),
submit,
text,
textarea

2 comments:

Please add comments only related to zend framework certification.