This code, would simply output Hello World! In plain black text in a PHP web-server.
PHP Dictionary So Far:
$variable = ""; - Declares a string variable.print ""; - Outputs text onto a screen. echo ""; - Exact same as print.