Re: [PHP] Sending data via POST

2005-03-11 Thread John Nichel
Todd Cary wrote: Currently I send data to another page by using header("Location: http://"; . |$_SERVER['HTTP_HOST'] .| |dirname($_SERVER['PHP_SELF']) . | |"/" . $relative_url . | |"?" . $my_data);| || ||My client would like the data pass

[PHP] Sending data via POST

2005-03-11 Thread Todd Cary
Currently I send data to another page by using header("Location: http://" . $_SERVER['HTTP_HOST'] .                     dirname($_SERVER['PHP_SELF']) .     "/" . $relative_url  .     "?" . $my_data); My client would like the data passed via a POST rather than