PHP Program to display "Hello, World!"

Problem

Write a program in PHP to display “Hello, World!”.

PHP Program to display “Hello, World!”

This is a simple PHP program that displays “Hello, World!” in the HTML page.

<html>
<head>
<title>Abundantcode.com Sample tutorial</title>
</head>
<body>
<?php
   echo "<h1>Hello, PHP!</h1>";
?>
</body>
</html>