How to check whether form posted or not in zend framework?
Answer Posted / Ramendra Kumar Mishra
In Zend Framework, you can check if a form has been submitted by checking the 'isPost()' method of the request object. For example, `if ($this->getRequest()->isPost()) { ... }`.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers