hello world with variables and different output statements/functions

cat-town
Dan Buch 14 years ago
parent c704331740
commit d4d0b09077

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

Loading…
Cancel
Save