if you want the browser to do it (as opposed to getting php to do it), then
you could use a "hidden" form, like:

<body onload="document.forms[0].submit();">
<form action="..." method="post">
<input type="hidden" name="..." value="...">
... etc (all hidden fields) ...
</form>

-----Original Message-----
From: Andrew Forgue [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 06, 2001 9:32 AM
To: [EMAIL PROTECTED]
Subject: [PHP] Simple(?) Question


Hello,

Is there a way to "post" to a script without any user interventions... e.g
The user posts to a script, and the script posts back to the original one.

Thanks!

Reply via email to