Hello Matthew, I think there's some strange bug in Zend_Form. See this code:
$form = new Zend_Form(); echo $form; which generates the following output: <form enctype="application/x-www-form-urlencoded" action="" method="post" id=""><dl class="zend_form"></dl></form> Notice the empty id attribute, which not just unwanted but also invalid. I also wonder why is the enctype specified, since it can be omitted, and defaults to the above value. Regards, Ádám
