Introduction to PHP

Code for checking the PHP version

 
      <?php
        phpinfo();
     ?>
    
Output

Display a message using PHP

 
      <?php
       echo "My God its working";
      ?>
    
Output