It's possible to redirect the browser to another page with pass parameter to that page with POST method ?
Take an example, there is a form in a.php which POST parameter to b.php. And b.php will verify the argument and redirect user to appropriate page (c.php). And b.php should pass all the parameter which received from a.php to c.php. And i don't want the parameter appear inside the address bar for security reasons, so i need to forward all the data by POST method.
Without the use of cookies or session, it's possible ? I checked some of the past question, i can see that there is some library that can call POST actions in a php but most of them just return the "reply" header, but not redirect the browser.
thanks.