PHP Lesson #1
All PHP must start with <?php and end with ?>
Using // in the code signifies that there is a comment on that line only
All statements in the code must end in ; so that the compiler knows how to handle events.
E.g.
<?php //must start with this
Echo 'Hello'; //all statements must end with ;
?> //must end with this

