I have seen questions about how to get the form tag in a view for the form that is being used as an alternative to rendering the whole form.
I had a project a while back that I did not want to render the form but wanted to just render each element individually so that the designer could manage the CSS and general structure of the HTML. This was not a real problem in that it is rather easy to render each element on its own using
<?php echo $this->form->elementName->render(); ?>
for each of the elements. With ZF1, doing the view this way tends to lead to people entering the opening and closing form tags manually like so
<form action="/controllerName/actionName" method="post"> <?php echo $this->form->elementName->render(); ?> </form>
which means they lose out on the OOP factor of that part of Zend_Form.