hello world with variables and different output statements/functions

This commit is contained in:
Dan Buch 2010-12-28 21:23:26 -05:00
parent c704331740
commit d4d0b09077

View File

@ -1,3 +1,9 @@
<?php
echo "Hello, World!";
$string = "Hello, World!<br />";
echo $string;
print $string;
printf("%s", $string);
?>