[Help Pls?] Multipage PHP Form

Earthquake

Newbie
Joined
Mar 10, 2009
Messages
43
Reaction score
19
I can submit the first page of info to my database and move to the next page

The next page enters the info into a new column in the database

I want the second page data to be entered into the same column as the information from the first page.

Can anyone point me in the right direction?

Thanks.
 
I can submit the first page of info to my database and move to the next page

The next page enters the info into a new column in the database

I want the second page data to be entered into the same column as the information from the first page.

Can anyone point me in the right direction?

Thanks.

I would do it this way:

Post the results of page one into hidden input field on page two. Than you can put all data in one record with one SQL Query.
 
Add me up on skype. I'll work with you tomorrow to sort this out.

By the way, in relatioal database data doesn't get inserted in columns. Data is inserted in rows of the tables. I think you meant rows.
 
Add me up on skype. I'll work with you tomorrow to sort this out.

By the way, in relatioal database data doesn't get inserted in columns. Data is inserted in rows of the tables. I think you meant rows.

yea i meant rows. my fault. ill get at you on skype tomorrow. appreciate the offer

I would do it this way:

Post the results of page one into hidden input field on page two. Than you can put all data in one record with one SQL Query.

thanks a lot buddy
 
What this guy said :)

I would do it this way:

Post the results of page one into hidden input field on page two. Than you can put all data in one record with one SQL Query.

For future reference, there is a PHP/Scripting subforum for this kind of thing!
 
Back
Top