Posted by Michael on 12/20/05 20:50
Does the data have to be post? Because if it was method GET then you
could do something a bit like this I suppose:
<?php
#Get all of the data using $_GET[]; and $_POST[];
$gets = ""; //You should arange them in this variable, in the GET style
format like: id=$id&text=$text
header("Location: http://worldpayaddressgoeshere.com/?$gets");
?>
Tell me if that works, I am curious about it.
[Back to original message]
|