From e40a4a00c220aabd4e29a2845ab6c634a9e5326b Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Tue, 28 Dec 2010 23:06:20 -0500 Subject: [PATCH] more hello world-ish stuff with the print statement --- docroot/html/printing.php | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docroot/html/printing.php diff --git a/docroot/html/printing.php b/docroot/html/printing.php new file mode 100644 index 0000000..e180dc9 --- /dev/null +++ b/docroot/html/printing.php @@ -0,0 +1,11 @@ +"; + + print "Hello" . ", " . "World!
"; + + if (print "Hello" . ", " . "Fail?
") { + print "last 'print' succeeded!"; + } + +?>