Lab 2

/3680_S19/wk2/lab2.php

Your task is to create a webpage by embedding php in html. The script page that you will be writing will contain ALL html tags within echo statements. Everything about this webpage will be php output, for example:

<?php
// lab2.php
define('TITLE', 'lab2');
...
echo "<!DOCTYPE html>\n";
echo "<html lang=\"en\">\n";
echo "  <head>\n";
echo "    <title>".TITLE."</title>";
...
?>

Requirements



Have the following assignment within your depository directory and your public_html directory
/3680_S19/wk2/lab2.php