Lab 1.1, 1.2 - Code

-Use proper PHP syntax
-Create a script

Chapter 1 Main




<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<title>Lab Practice 1.1, 1.2</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<link rel="stylesheet" href="../chapterstyles.css">

</head>

<body>

<div>
    <header>
        <h1>Lab 1.1, 1.2</h1>
        <h3>1.1: Use proper PHP syntax | 1.2: Create a script</h3>
    </header>
</div>

<div id="chapterMain">
<a href="chapter1main.php">Chapter 1 Main</a>
</div>


<?php echo "<p>This text is generated from a php script!!!</p>"; ?>

<div id="chapterMain">
<!-- red line-->
</div>
<br>

<footer>
ITSE 1406 - Intro PHP
<br>
for Brookhaven College
<br>
&copy Michael Banks, 2019
<br>
<br>
</footer>



</body>
</html>





BACK