I've a problem: using getvalues i have an empty array as returned values.
This appens if i submit the correct form, an empty form or if i put some
chars.


$form = new forms_RegisterForm();

      if ($this->getRequest()->isPost())
      {
          $values = $form->getValues();
          print_r($values);
        if ($form->isValid($_POST))
        {

        }
        else
        {
            $form->populate($values);
        }
      }
-- 
View this message in context: 
http://www.nabble.com/Zend_form-and-getValues-%3D%3E-empty-array-tp23313199p23313199.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to