Quote:
Originally Posted by fluffygrrl
Um if its a html form you just make the form do it for you
Code:
<FORM action="http://somedomain.com/somescript.php" method="post">
All the data will be in $_POST['somename'], where somename is what you named the respective input field (<input name="somename"...>)
If you want to pipe php output to a different script, you do include("somescript.php"); or require("somescript.php");
|
thank you ok heres the situation
the form receving the user input is a php form on one domain and I want to pipe the inputed data to a form located on another domain so it would appear as if the form data was posted directly at the remote domain
thanks in advance