I would also like to know if it is normal that any code from Zend comes AFTHER the </html> tag in the source, even if it was intended in the <body> tag when echoed out in the .phtml file.
Definitely no. When you use the forms:
<?php $this->form1; ?>
<?php $this->form2; ?>
<?php $this->form3; ?>
It appears that you are trying to use View Helper classes that echo output within the helper class. It would be better to return the helper text to the view script and echo it there:
<?php echo $this->form1; ?>
Or insert the form data into the View, like Kuba mentioned:
$this->view->form1 = $form1;
+transfere
index.phtml // TransfereController:indexAction()
other.phtml // TransfereController
therAction()
index.phtml is the default view when no action is specified for the controller. I believe that is the case for all controllers unless you specifically change the controllers behavior.