I receive POST request at my PHP script and would like to forward this post call to another script using POST too. How to do this? I can use cURL if it\'s required for this
Do this,
curl_setopt($handle, CURLOPT_POSTFIELDS, http_build_query($_POST));