I have a simple question, playing with Zend_Form, I have created a form passing variables when instansiating the class like so:
$options['rval'] = 1; $options['sval'] = 2; $options['tval'] = 3; $form = new Zend_Form($options); and I get something like this: <form id="zend-form" rval="1" sval="2" tval="3" action="" method="post"> </form> what I am wondering, is there a way to retrieve rval, sval, and tval in my action controller? I have checked $request->getPost() and $request->getParams() and $request->getUserParams(), but none of those contain the values. I know I am mistaken on the usage of $options, but it would be very useful (allowing me to avoid using input type hidden). Though I am presuming this is not possible I thought I would ask anyhow. Thanks Aaron -- View this message in context: http://zend-framework-community.634137.n4.nabble.com/Zend-Form-question-tp2280478p2280478.html Sent from the Zend Framework mailing list archive at Nabble.com.
