On the index.html page there is a small form with name, address, city ... I'd like to put these variables into the $_Session array and then, using the post method, have the submit form action go to the next form. What's the best way to do that [php5]?
form multiple actions
I have used a class called Zervwizard with multi-step forms. Its quite simple to use once you get the hang of it. You can find it here along with a tutorial:
http://www.phpriot.com/articles/multi-step-wizards
Say form #1 is form1.php...you would fill it out, submit it to form #2 (form2.php) where you would store the submitted values in a session and then output the second form. That's one way to do it.