2009/10/22 Krzysztof Szatanik <[email protected]>
>
> As you can see even if i get form values in request as i wanted, they
> aren't recognized by Zend_Form. Output of $form->getValues() is different
> from expected, and even fields aren't recognized, so i can use Zend_Form
> only to generate HTML form but not to filter and validate submited form.
>

Assuming it's a post:

$form->isValid($request->getPost());
$data = $form->getValues();

- pw

Reply via email to