PHP Basics

     PHP(Php Hypertext Preprocessor) is a server-side scripting language which is popular and mostly used by web applications developer because of it's efficient libraries. And since PHP is open-source, many web developers choose it for it's no cost usage.
     Here are some basic PHP codes for starters.
     To create a PHP script, we must create a PHP tag. A tag which will be used to write PHP codes in it. 
<?php
// write your PHP codes here
?>
      Since PHP is a server-side scripting language, the code above will be read by the server and will become an HTML code after. I mean when you run a PHP script in your server, eventually when you view the page source of your script you will see all HTML tags.

Comments (0)

Post a Comment