Re: [PHP] Re: How to post from a php script

2002-08-12 Thread Jason Wong
On Tuesday 13 August 2002 01:11, Rick Horrix wrote: > Thanks for your reply, but I can see a couple of potential problems with > this ;- > 1) This relies on the user having javascript enabled in their browser > settings. > 2) The page has to be fully loaded in the client browser before the > redir

[PHP] Re: How to post from a php script

2002-08-12 Thread Rick Horrix
Thanks for your reply, but I can see a couple of potential problems with this ;- 1) This relies on the user having javascript enabled in their browser settings. 2) The page has to be fully loaded in the client browser before the redirect takes place, this means it will perform more slowly than a s

[PHP] Re: How to post from a php script

2002-08-12 Thread Kai Hinkelmann
Create a form only with hidden-fields (your values) and no visible fields or buttons. The "action=" is set to the next file, the method ist set to POST (of course). Don't use php-header to redirect but javasript. If you want to redirect immediately you can write "onLoad=document.forms[0].submit()"