Im new to Zend Framework, so asking a basic question. I want to get the posted data, in general from one field in a form, I wanted to get the data for debugging purposes. >
you can do it in the following way: in your controller action
$value = $form->getValue('UserName');
in this way you can get the value of zend textbox having ID 'UserName'
For more details you can study the code given on : Zend Framework Tutorial