Hello World in PHP

From LQWiki
Jump to navigation Jump to search

Hello World is the typical minimum-function program that prints a message and exits successfully. This is an example written in PHP.

<?php
echo "Hello World!";
?>