Question
Main page
Contact Us page
About Us page
Shopping Cart page
Products page: For the user to view all the items on sale
In the Contact Us page, which is used to enable the customer to contact the store, you need to include the following fields in your form:
Name
Comment
A submit button to submit the information to the server
After you complete the design, use accurate PHP script to read the information entered in the contactus.html page and display it on the screen. The process should be as follows:
User types name, e-mail, and comment in text boxes.
User clicks submit button.
User is directed to a PHP page that reads user input and displays it on the screen.
Submit your code, as well as a test plan in a 4- to 5-page Microsoft Word document consisting of:
Screenshots of your project (showing design, data entered, and displayed)
A paragraph explaining how you tested your project
Code and HTML pages zipped under one file
Support your responses with examples.
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
<html><head>
<title>About Us</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="mycss.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div class="banner" >
<a href="product.html"><img src="img/gobble.jpg" alt="gobble banner" width="800" /></a>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="contactus.html">Contact Us</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="product.html">Products</a></li>
<li><a href="cart.php">Shopping Carts</a></li>
</ul>
</nav>
<h2>
Life, Away From Keyboards.
</h2>
<p>
We are a local, independently-owned business, and a registered Virginia company.
</p>
<p>
Our founder, John Brittell, is a re-introduced native of Virginia Beach who launched his retail career at Games 'n' Gadgets in Lynnhaven Mall in the mid-eighties. There is a good chance he sold you your first copy of Super Marios Bros. or Sonic the Hedgehog.
</p>...