box-o-sand/web/html/wikipedia-tutorial/helloworld.php
2011-01-02 23:22:12 -05:00

10 lines
113 B
PHP

<?php
$string = "Hello, World!<br />";
echo $string;
print $string;
printf("%s", $string);
?>