Hi,
I need help to make php scripts to receive value from HTML FORM then add some value, then post all the value to destination address.
file1.html will have this:
<form name="form1" action="file2.php" method="post">
<input type="hidden" name="Cust" value="John Doe">
<input type="hidden" name="Total" value="100">
<input type="submit" value="Submit">
</form>
file2.php will do:
1. Add Login = "My-Username"
2. Add Passwd = "My-password"
3. With Cust and Total from file1.html, file2.php post all the 4 value (Plus Login and Password) to destination-otherdomain.com (http://destination-otherdomain.com/receiver)
FYI. My web hosting provider does not support curl and snoopy.

Please help.
Thank you in advance.
I need help to make php scripts to receive value from HTML FORM then add some value, then post all the value to destination address.
file1.html will have this:
<form name="form1" action="file2.php" method="post">
<input type="hidden" name="Cust" value="John Doe">
<input type="hidden" name="Total" value="100">
<input type="submit" value="Submit">
</form>
file2.php will do:
1. Add Login = "My-Username"
2. Add Passwd = "My-password"
3. With Cust and Total from file1.html, file2.php post all the 4 value (Plus Login and Password) to destination-otherdomain.com (http://destination-otherdomain.com/receiver)
FYI. My web hosting provider does not support curl and snoopy.
Please help.
Thank you in advance.