In PHP its quite easy to read a remote web page using the fopen("http://www.remotedomain.com/", 'r'); syntax and frequently you can complete a form using:
$fh = fopen("http://www.remotedomain.com/form.php?key=$value", 'r');
However, I'm up against an attempt where the information MUST be sent via POST rather then GET. Obviously, fopen is doing a GET request behind the scenes.
Does anyone have a working example (code) of completing a form on a remote server via POST?
Any samples/help would be appreciated.
Scott