<?php
echo "Hello World!";
?>
<!--
For embedding/use PHP we have to use <?php ?>
all the php code will goes within the <?php /*code*/ ?>
above is the Hello World Programm written in PHP
on line 2 we use 'echo' statement and then the tect Heelo World! as Strings
and in the end we terminate the line with ;
-->