| | I have a form, from where the data is being posted to a php script. Now in the php script the script has to forward the data to another script with posted data. I know this can be done using header but i don't know how to keep the data posted with form in POST method. For example: The form below: Code: <form method="POST" action="1.php"> <input type="hidden" value="abc" name="t1"> <input type="submit"> </form> Now its posting data using POST method to 1.php...and now 1.php will redirect everything to another php script with the data and it should be in POST method ... How can i do this ? Thanks. |

