Lab 1.3, 1.4 - Code

-Create variables
-Create a script

Chapter 1 Main




<?php require_once "../mainfunctions.php" ?>

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

<head>
<meta charset="utf-8">
<title> 1.3, 1.4</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.3, 1.4</h1>
        <h3>Create variables | Create a script</h3>
    </header>
</div>


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

<div>
<?php
//create variables
$favColor = "teal";
$favNumber = "17";
//write out variables
echo "<p>My favorite color is $favColor</p>";
echo "<p>My favorite number is $favNumber</p>";
?>
</div>




<?php 
printFootWithCodeExample("1.3-1.4code.php");
?>

</body>
</html>




BACK