Page 1 of 1

I need help creating a multistep DATA input page in php & my

Posted: Thu Apr 10, 2008 2:55 pm
by babyphp
I need help creating a multistep DATA input page in php & mysql environment.
i can only create a single form that input data into one database table

what am trying to achieve is
create a php page that can input data into more than one database table

this is in form of a registration page where the user can click on the first page they fill that out then click on the next link that say page 2 then fill that out then do so for up to 5 pages the last page wil have the summit button

each php page has their own database table, page1 data get store on page1 database table and so on with the rest page


can any body help me


if its a used code or tutorila i will appreciate

Re: I need help creating a multistep DATA input page in php & my

Posted: Thu Apr 10, 2008 3:09 pm
by RobertGonzalez
Moved to PHP - Code.

What code have you written already? It is easier for us to help you when you show us what you have tried that hasn't worked.

Re: I need help creating a multistep DATA input page in php & my

Posted: Thu Apr 10, 2008 3:30 pm
by babyphp
i have creat a single form for a single table

i havnt actually done any for this one have been searchin google to see if i can get a tutorial that explain how to do it
didnt get any useful material just need to get a head start

Re: I need help creating a multistep DATA input page in php & my

Posted: Thu Apr 10, 2008 3:31 pm
by RobertGonzalez
You can use a session, you can use cookies or you can use hidden form fields to keep track of where you are.

Re: I need help creating a multistep DATA input page in php & my

Posted: Thu Apr 10, 2008 3:34 pm
by babyphp
do you have any sort of usefull material i can read on or a sample code as am not too good at php and mysql

or if you could draft a usefull start code for mr so i no where to start from

Re: I need help creating a multistep DATA input page in php & my

Posted: Thu Apr 10, 2008 3:38 pm
by RobertGonzalez
Not really. I say try something and let us help you. Start by making a single form page that posts back to itself. From there consider what would be the best tracking mechanism to maintain state of the form submissions. Then integrate that into your client side and server side logic.

Does that make any sense?