When echo'ing, you have to remember to include periods(.) between quoted material and variables
i.e.
echo "Name: " . $name;
as opposed to:
echo "Name: " $name;
Also, escape sequences(\n for newlines) need to be inside of the quotes, as they are interpreted as part of a...