Pages

Showing posts with label Zend_Form. Show all posts
Showing posts with label Zend_Form. Show all posts

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

Tuesday, 17 July 2012

What is Zend_Form


It uses to create a form in zend framework. In this each input/select/radio/checkbox known as element.
Following are the zend form features.

·         Filtering and validation
·         Ordering
·         Element and Form rendering, including escaping
·         Element aSnd form grouping
·         Element and form-level configuration