Saturday 11 July 2020

Php First Programe

There are two Types of Php Tag
  1. <?php           (Open Tag)
  2. ?>                 (Close Tag)
                                             Start First Programe
    <?php

   echo "Hello World";



  ?>




Save This File any name with .php Extension.
Ex. a.php, b.php, c.php, abc.php, xyz.php etc.

"echo" is Php Predefine  Function , Which Show  output on the Browser. 
use semicolon (;) for Terminate the Statement.


No comments:

Post a Comment