Dashboard Temp Share Shortlinks Frames API

HTMLify

Hello.php
Views: 603 | Author: djdj
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
<?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 ; 
-->