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
I need help creating a multistep DATA input page in php & my
Moderator: General Moderators
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
Re: I need help creating a multistep DATA input page in php & my
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.
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
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
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
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
Re: I need help creating a multistep DATA input page in php & my
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
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
or if you could draft a usefull start code for mr so i no where to start from
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
Re: I need help creating a multistep DATA input page in php & my
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?
Does that make any sense?