What is PHP
- Hypertext PreProcessor
- Open source scripting language
- Php is free to download and use
- Php scripts are executed on the server
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHrxDzozNehkGguVwRO2baOvrraOl-FGDfhhTGreyctlnkdthCVQ0CiOUwMGfXo42XoNgotGi9xe52cUyoJWvJ7hu8M-QkwQ4Ll9OStH5xE99pOsz9l7EhykoJ5UrS0Wy8bLGsc-gT30Np/s320/php.jpg)
PHP Syntax
<?php// Php code
?>
Example:-
<?php
echo " Hello ";
?>
Comments in Php
// this is a single line comment/* this is a multiple line comment block */
0 Comments