Nice tutorial, but would have been better if you taught them how to echo text or a variable.
Or both, echo some text and use a variable in it.
E.G.
<?php
$name = "John";
$age = "14";
echo "Hi i am $name and i am $age years old";
?>
Or something like this:
<html>
<body>
<?php
$name =...