Every language has it... the basic "Hello, World!" script. It is a simple script that only displays the words "Hello, World!".
PHP - Words Display Script
<html>
<body>
<?php
Print "Hello World!";
?>
<?php
Echo "Hello World!";
?>
</body>
</html>
OUTPUT : Hello World
Comments
Post a Comment