0% found this document useful (0 votes)
29 views1 page

PHP Tizag Tutorial-34 PDF

You ordered 6 brushes. Thank you for ordering from Tizag Art Supplies! A lot was going on in this example PHP & HTML form review. It had an HTML form with item and quantity fields that posted to process.php using the POST method. Process.php set variables equal to the posted values from the form and echoed the customer's order.

Uploaded by

Anil Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views1 page

PHP Tizag Tutorial-34 PDF

You ordered 6 brushes. Thank you for ordering from Tizag Art Supplies! A lot was going on in this example PHP & HTML form review. It had an HTML form with item and quantity fields that posted to process.php using the POST method. Process.php set variables equal to the posted values from the form and echoed the customer's order.

Uploaded by

Anil Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

process.

php Code:
You ordered 6 brushes.
Thank you for ordering from Tizag Art Supplies!

PHP & HTML Form Review

A lot of things were going on in this example. Let us step through it to be sure you understand what was
going on.

1. We first created an HTML form "order.html" that had two input fields specified, "item" and "quantity".
2. We added two attributes to the form tag to point to "process.php" and set the method to "post".
3. We had "process.php" get the information that was posted by setting new variables equal to the values
in the $_POST associative array.
4. We used the PHP echo function to output the customers order.

Remember, this lesson is only to teach you how to use PHP to get information from HTML forms. The
example on this page should not be used for a real business.

You might also like