Let\'s say I have a form that collects a first name and a last name:
$first_name = new Zend_Form_Element_Text(\'first_name\'); $first_name->setLabel(\"First N
Array keys are the field names, array values are the field values.
$data = array( 'first_name' => 'Mickey', 'last_name' => 'Mouse' );