box-o-sand/php-practice/web/html/wikipedia-tutorial/helloworld.php

10 lines
113 B
PHP

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