Friday, 23 October 2009

Why PHP why?

The design of PHP frameworks is frickin painful.

Why are they so against autocomplete?


private function getForm()
{
$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;
}
That is just wrong. Wrong! Wrong!

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