How to check whether a form posted or not in the zend framework?
Answer Posted / Gaurav Bhatnagar
In Zend Framework, you can check if a form has been posted by checking if the data has been populated: `if (!$this->getRequest()->isPost() || empty($form->getData())) { // no form post }`
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers