$form->setMethod(Form::METHOD_POST);
$form->setEnctype(Form::ENCTYPE_MULTYPART_FORMDATA);
$form->setAction("results");
How I can retrieve the data in the new action? I cant access to $form.
Index action and results action are in the same controller, so when I call submit everything restart in the class.
Thanks.