What is PHP?
- PHP stands for PHP: Hypertext Preprocessor
PHP is a server-side scripting language - PHP scripts are executed on the server
PHP supports many databases (MySQL, Informix, Oracle, PostgreSQL.)
Simple Program
<!–PHP Start with A PHP scripting block can be placed anywhere in the document.–>
<?php
//Single Line Comment
//print the value using echo ;
echo “PHP”;
/* Multi Line Comment
example.php PHP file saves with (.PHP)
*/
?>


