Forum Moderators: coopster
The PHP header() [php.net] function should be what you want. What do you have that isn't working?
P.S. You can click the owner edit area under your name on the
<-- left over there to edit your posts if necessary ;)
I didn't realize last time that the PHP 'action' file was producing output. It looks like you want to send the info to that 'action' page and then display that other page, without the viewer seeing the 'action' page.
If the form uses GET, you can do this kinda easy -- what you'll want to do is make a different 'action' page that the form data is sent to. Remember that snippet of code I posted last time? Go grab that, build up the $request string, and then do this:
$nothing = file('ht*p://thatdomain.com/?'.$requeststring;
(you don't need $nothing)
If not, you're going to have to do fancy-schmancy stuff with the PHP curl library. Yuk.