On Fri, 27 Jun 2003, Ludwig Lim wrote:
>
> Hi :
>
> How do I simulate a POST request using the
> "header()" function?
Are you basically trying to make the client side auto-submit a form? You
can do that easily enough, without the header() function.
Just build a form with a <body onload=document.formname.submit()> tag at
the top, and a form with all the data you need in hidden fields and a post
method.