Multiple page forms. Displaying info on each page

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
SpiderT3
Forum Newbie
Posts: 1
Joined: Sun Aug 29, 2004 12:28 pm

Multiple page forms. Displaying info on each page

Post by SpiderT3 »

I am trying to set up an order form page for services provided by my business. Here's the layout of what I am trying to do.

Page One:
(User selects one of three options by radio buttons)
Basic
Advanced
Professional

Page two:
(User can select optional extra services by radio buttons)
option one
option two
option three
etc.

Page three:
( user fills in information based upon what services they selected on the two previous pages.)

How do I carry information from the radio check boxes over to two or more pages. I am new at the php language. All I can figure out to do is gather information on one page, then display it on another. I don't know how to gather info from one, gather more from the next, and then finally display info based on what I gathered on a third page.
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

you can do them via sessions or with hidden form fields. I prefer sessions, personally.

http://www.php.net/session
Post Reply