My suggestion:
Use cookies or session management functions in PHP4 to store the values.
1 - store the values in an array
2 - serialize the array and store it in a cookie
3 - When the user submits a new form read the cookie, unserialize the array and do what you need with values then process to step 2
4 - When the user commit his job read the cookie, unserialize the array and store the result in your db.
You don't need to create a temporary table.
Hope this helps
ps:
- serialize and unserialize functions syntax can be found in the php manual at section "Miscellaneous functions"
- SetCookie: "HTTP functions" part
- Session management: "Session handling functions"
JBL