PHP Tutorial

PHP is a server-side scripting language and a powerful mechanism for making interactive and dynamic Web pages.
PHP stands for Hypertext Preprocessor, before that, PHP was known as Personal Home Page. It is a widely used, open-source (free), and efficient alternative to competitors like Microsoft's ASP.

 

Example

<!DOCTYPE html>
<html>
<body>
  <?php
         echo "We are learning PHP script!";
  ?>
</body>
</html>

Output
We are learning PHP script!


Next