<html>
<head>
<title>Hello World</tile>
</head>
<body>
This page is my first Hello World php Script.<br><br>
<?php
echo "Hello World! This is PHP <br><br>" ;
print "Hello World! This is PHP again with the function print <br><br>"
;
echo "Hello" . " World! This is PHP concatenated together with a .
<br><br>" ;
echo 2+3;
?>
<br><br>
<?php
echo "Johnny will come marching home, today" ;
?>
</body>
</html>