What is the difference between redirect and forward in zend framework?
Answer / Mahesh Pratap Singh
In Zend Framework, both redirect() and forward() are used for navigation. However, redirect sends a HTTP 302 response with the new location in the Location header while the current page is still rendered. On the other hand, forward() skips rendering of the current controller action and directly executes the specified controller and action.
| Is This Answer Correct ? | 0 Yes | 0 No |
Tell me what are the steps kept in mind while designing the zend_form?
What do you know about zend layout?
Who developed the zend framework?
How to get variable's value from get?
Zend_cache provides a generic way to cache any data?
Write a program to show the function of action helper?
Do you know what is the use of zend framework?
What are the goals of zend framework?
How to check whether form posted or not in zend framework?
How can I customize the appearance of forms generated by zend_form?
How to change the view render file from controller?
Zend framework forms, decorators and validation: should I go back to plain html?