[Solved] POST data to URL using PHP [closed]


cURL is an easy way to send/retrieve data from other URLs. Personally, I find it to be fairly easy to use too — you can see a tutorial here. If you don’t have cURL, there are other options.

If you need to forward the user to another URL using POST, then you’re in a bit more of a bind. HTTP was not designed that way. You can create a page on your side which has a form filled out with all of the post variables and have a script tag with document.forms[0].submit().

2

solved POST data to URL using PHP [closed]