Display subform after validate main form
- by bahamut100
Hi,
I want to display a new form after the validation of a form.
I use Zend_Form_SubForm to do it (I Try to Zend_Form too), but this new form is not displaying.
Why ??
This is the code in question :
if ($this->_request->isPost()) {
$formData = $this->_request->getPost();
if ($form->isValid($formData)) {
…