10 lines
113 B
PHP
10 lines
113 B
PHP
<?php
|
|
$string = "Hello, World!<br />";
|
|
|
|
echo $string;
|
|
|
|
print $string;
|
|
|
|
printf("%s", $string);
|
|
?>
|