Hello HWG PHP Class

This assignment requires a variable to be displayed using echo. Then the function phpinfo() was added to verify how my server is functioning.

Here is what my code looks like:

<h2><?php
$myVar="Hello HWG PHP Class";
echo("$myVar");
?></h2>

And here is how you add a phpinfo() call:

<?php  
phpinfo();
?>