Question
<Product>
<Item>
<Name>T-Shirt</Name>
<Price>12.5</Price>
</Item>
<Item>
<Name>Pants</Name>
<Price>45</Price>
</Item>
<Item>
<Name>Hat</Name>
<Price>10.5</Price>
</Item>
</Product>
Your end page result needs to show the items, their cost (price) in a table format. Use both PHP script as well as HTML tags to create the dynamic table from the given XML file.
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
Note: Submit the zipped code, HTML, and PHP pages zipped under one file.
Support your responses with examples.
Cite any sources in APA format.
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>
<meta charset="UTF-8">
<title>Shopping Cart</title>
<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.php">Products</a></li>
<li><a href="cart.php">Shopping Carts</a></li>
</ul>
</nav>...