Programming Code Center(PCC)
[PHP]

(PCC)::[how-to-write-simple-hello-world-program-using-echo-in-php-language]::[php]

File Name : index.php

<!DOCTYPE html>
<html>
<body>

<h1>My first PHP page</h1>

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

</body>
</html>

Output :

My first PHP page