Sending POST data from one PHP file to another
Posted: Sat Jun 24, 2006 10:59 am
Hi, guys.
Is it possible to send POST data from one PHP file to another?
If it is not possible then no problem. If it is possible could someone please supply a little example of how I would send the variable data. 
Thanks,
Si ++
Is it possible to send POST data from one PHP file to another?
Code: Select all
<?php
header("content-type:application/x-www-form-urlencoded");
// add variables
header("location:target.php");
?>Thanks,
Si ++