box-o-sand/docroot/html/helloworld.php

10 lines
113 B
PHP

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