Hello,
RequestDispatcher basically dispatches a request to some other resource i.e it doesn't do a redirect but simply forwards the page to some page(resource). Thus browser's history etc is not updated and the parameters that are available in request are still available on another page since we are not creating a new request using redirect.
What is equivalent of this in PHP? And also which function is used to redirect a page?
Thanks in advance :)