1. Create a new PHP file in your IDE called seusssale.php. 2. Enter the required
ID: 3732944 • Letter: 1
Question
1. Create a new PHP file in your IDE called seusssale.php.
2. Enter the required HTML tags : <!DOCTYPE html>, <html> element, document <head>, and <body> element.
2. Use “Dr. Seuss Everything Store” as the content of the <title> element.
3. Add the following text and elements to the document body:
<h2>Raining Day Sale</h2>
<ul>
<li>Green Eggs and Ham: <strong>$12.99</strong></li>
<li>The Grinch: <strong>$754.99</strong></li>
<li>Cat in the Hat: <strong>$199.99</strong></li>
<li>The Lorax: <strong>$99.99</strong></li>
</ul>
4. Add the following PHP code section and include statement to the beginning of the PHP file <body> element. This statement includes an external file named inc_header.php at the start of the Web page. <?php include("inc_header.php"); ?>
5. Add the following PHP code section and include statement to the end of the PHP <body> element. This statement includes an external file named inc_footer.php at the end of the Web page. <?php include("inc_footer.php"); ?>
6. Save the PHP file as seusssale.php
7. Create a new document in your text editor and add the following text and elements:
<table width="100%">
<tr>
<td>
<h1>Dr Suess Sale</h1>
</td>
<td>
<strong>Call 1-800-414-7898 for Details</strong>
</td>
</tr>
</table><hr />
8. Save the document as inc_header.php
8. Create a new document in your IDE and add the following text and elements:
<hr />
<table width="100%">
<tr>
<td><strong>Updated</strong> January 21, 2018</td>
<td>© 2018 by Dr. Suess Everything Store</td>
</tr>
<tr>
<td>All Rights Reserved.</td>
</tr> </table>
9. Save the document as inc_footer.php
10. Upload the storesale.php, inc_header.php, and inc_footer.php files to the server.
Explanation / Answer
Seusssale.php:
<!DOCTYPE HTML>
<html>
<head>
<title>Dr. Seuss Everything Store</title>
</head>
<body>
<?php include("inc_header.php"); ?>
<h2>Raining Day Sale</h2>
<ul>
<li>Green Eggs and Ham: <strong>$12.99</strong></li>
<li>The Grinch: <strong>$754.99</strong></li>
<li>Cat in the Hat: <strong>$199.99</strong></li>
<li>The Lorax: <strong>$99.99</strong></li>
</ul>
<?php include("inc_footer.php"); ?>
</body>
</html>
inc_header.php:
<table width="100%">
<tr>
<td>
<h1>Dr Suess Sale</h1>
</td>
<td>
<strong>Call 1-800-414-7898 for Details</strong>
</td>
</tr>
</table><hr />
inc_footer.php:
<hr />
<table width="100%">
<tr>
<td><strong>Updated</strong> January 21, 2018</td>
<td>© 2018 by Dr. Suess Everything Store</td>
</tr>
<tr>
<td>All Rights Reserved.</td>
</tr> </table>
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.