I am trying to send variables via the post method from my form, through my php script to handle where it is supposed to send the data, then send that data to some other web site via the post method. I don't know if this is possible or not.
I know I can send data like this (Get Method):
http://www.somesite.com/somescript.php?variable=somevalue.
But I absolutely have to send the data via the post method.
If there is no way of doing that, is there a way to make a form just automatically submit itself? (Without the user having to press submit).
If so then I could just have my php script just create the form, input the appropriate information then have it submit it to the site via the POST method automatically and the user will never know this has happened.
Thanks.