Hello, World
PHP Code Examples
[Download]   [Execute]
<html>
<title>Hello, PHP</title>
<body bgcolor="#EFEFFF">
<p>
<h2>Hello, PHP</h2>
<a href="../index.html"><i>PHP Examples</i></a></p>
By Federal statute, all instruction in a programming
language must start with Hello, World!.<p>
<?php
print "Hello, World!";
/* Notice the <?php ?> escape brackets. */
?>
</body>
</html>