Why are they so against autocomplete?
private function getForm()That is just wrong. Wrong! Wrong!
{
$form = new Zend_Form();
$form->addElement('text', 'name', array(
'label' => 'Your name',
'required' => true
));
$form->addElement('textarea', 'message', array(
'label' => 'Message',
'required' => true,
'rows' => 4
));
$form->addElement('submit', 'send');
return $form;
}
I'm seriously thinking of pulling out my year old unmaintained mini framework or going to Java. This is just not funny.
No comments:
Post a Comment