As per my previous question, I need to redirect an HTTP POST request to a different server. I believe this can be done using HTTP response headers from php, but I understand the POST request will become a GET request. My question is what happens to the body of the HTTP request? is it discarded, or will it be converted to be part of the GET request's query url?
i.e. if a POST is made to http://mysite.com/handler.php
and I redirect to http://othersite.com/handler.php
will it automatically become http://othersite.com/handler.php?param1=hello¶m2=world