Hello
I am working on a web site with a multi-form order process. The process is designed to work as follows:
(1) User fills out order form (ORDER.PHP)
(2) If new user (email not in datbase) the user goes to a registration form (REGISTER.PHP). Otherwise, the user goes to a summary/invoice page (SUMMARY.PHP).
ORDER.PHP posts to an intermediate page called ORDER2.PHP, which determines if the user is a new user or retuning customer by querying the database. This page will receive all of the variables from ORDER.PHP and is supposed to pass them on to either REGISTER.PHP or SUMMARY.PHP. However, since ORDER2.PHP does not have a form itself In other words, there is no submit/post action taking place on ORDER2.PHP -- it is simply a script that recieves and processes data. Is there a way I can pass variables from ORDER2.PHP to another page without the use of a form submit?
Thanks
Barth