|
|||
|
|
|||
|
|
Creating a multi-page order form using PHPForms are part of virtually any web application today. They are the main method to receive input from people using the application. They range in size from one-field opt-in forms where you only enter your email address, to very long forms with tenths or even hundreds of fields.
To make long forms user-friendlier, it is a good idea to span the form on multiple pages. This can make it easier to follow for the user, and we can also split the data in separate sections, based on the scope (for example separate personal customer information from payment data in a shopping cart checkout form). One of the challenges that arise from splitting the form over multiple pages is passing the data from one page to another, as at the final point of the form, we have all the needed data ready for processing. We are going to look at two methods to do this: session variables and hidden input fields. What are sessions anyway?
A HTML session is a collection of variables that keeps its state as the user navigates the pages of a certain site. It will only be available to that domain that created it, and will be deleted soon after the user left the site or closed his browser. Multi-page form using sessions
In our example, we are going to create a three pages form, resembling a membership signup and payment form. The first page will ask for customer's name and address, on the second page there is the choice for membership type, and on the third and final page, payment data must be entered. Final step is saving the data in MySQL.
<form method="post" action="form2.php">
Ok, so nothing more than 2 input fields and a submit button to take us to step 2. In the following page, apart from the HTML form to gather membership data, we are going to need code to store the submitted data from step 1 in the session.
<?php
<form method="post" action="form3.php">
On to step 3, we must again create new session variables, assign values received by post, and create the final part of the form.
<?php
<form method="post" action="form_process.php">
Now that we created step 3 of the form, what's left is the final processing script that inserts the data in the MySQL database.
<?php
And we are done. Please note that in the final query, we are using data from the $_SESSION array, and also data from the $_POST array, that was posted from the last step of the form. Next Page: Multi-page forms using hidden input fields
Related pages
|
| Copyright © 2008 html-form-guide.com . All rights reserved. | ||||