Jack Nilan         Intro to PHP        EMail : jacknilan@yahoo.com

To Create a PHP program we can do the following

<html>
<body>
<?php
print "This will print out something inside the php tag <br> ";
print "We can print just plain test or <b>HTML CODE<br> ";
print "Just be sure to use print and the quotes and the parenthesis <br>";
print "and the semi-colon at the end of the line <br>";
print "Then end the php like you see below<br>";
?>
</body>
</html>

So as yout First assignment write a PHP page which will create an HTML page. You should save it with a .php extention ( for example : myfirstphp.php )