Quote:
Originally Posted by pussyserver
I need to pipe the data from one form script to another form scriprt on another domain
|
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");