more hello world-ish stuff with the print statement

This commit is contained in:
Dan Buch 2010-12-28 23:06:20 -05:00
parent d4d0b09077
commit e40a4a00c2

11
docroot/html/printing.php Normal file
View File

@ -0,0 +1,11 @@
<?php
print "Hello, World!<br/>";
print "Hello" . ", " . "World!<br/>";
if (print "Hello" . ", " . "Fail?<br/>") {
print "<em>last 'print' succeeded!</em>";
}
?>