Hello-
I hope I'm explaining myself clearly. I have a two-page form which enters data into two MySql tables. The first table's ID field is auto_increment so that the ID is generated when the first page is submitted. Once the first page's data is inserted into the first table, the user clicks on "Continue" and the second page of the form appears.
How do I pass the just generated auto_incremented ID from the first table to the second page of the form, which enters data into a second table, so that the ID relates between the two tables?
Thanks for your help.