// comment You can have comments in PHP
/* multi
line*/
# comment
// The echo command write html code to the file that is sent from the server to the client
// Php statements end in a;...
echo "Hello php!
";
//the newline character will put this statement on a new line in the file that is sent -
//makes it a litte easier to read the generated html code for debugging
echo "\nthis is php!";
echo " Hi There!
";
echo " This is so fun!
";
//
echo "
" // "