I'd like to ask a similar question.
Im trying to automatically redirect a page which has php variables in hidden form tags.
The info needs to be POST-ed to another page (which is not in my control coz its a another website /organisation). I cant build a query string and use GET coz the data is too big.
How can i redirect a page whilst inserting all the POST data into an HTTP header?
I need to do this because i need to collect info from a form, then use a php3 page to:
1. store it into a database / email me
2. then forward the user to another domain.
My solution at the moment is to do the db work, then present an HTML page which asks them to press a submit button.
To put it simply i want the submit button to be 'pressed' automaticly without user action or client side scripting (e.g none of this;" javascript:[Form name here].submit() " ).
Thank you in advance.