Phil Karras
12-26-2003, 02:35 PM
I need to be able to pull data from a posting to my site - I know how to do that - then I need to send some of the data on to another site.
While I have done this via: print redirect($MyUrl); and I suppose it could also be done with Location: the problem is that I do not know how to hide the info I'm sending.
In other words, using redirect I have to include the info on the URL line like an HTML GET, not an HTML POST (which hides the info being sent.)
I need to know if there's another function/method or some way to send the data hidden from the user's view of the URL line.
$MyUrl = "http://www.testsite.com/testpage.pl?MYname=Phil";
I want to hide things like MYname=Phil and any other items I may need to send on.
Any & all help greatly appreciated!
While I have done this via: print redirect($MyUrl); and I suppose it could also be done with Location: the problem is that I do not know how to hide the info I'm sending.
In other words, using redirect I have to include the info on the URL line like an HTML GET, not an HTML POST (which hides the info being sent.)
I need to know if there's another function/method or some way to send the data hidden from the user's view of the URL line.
$MyUrl = "http://www.testsite.com/testpage.pl?MYname=Phil";
I want to hide things like MYname=Phil and any other items I may need to send on.
Any & all help greatly appreciated!