What is PHP Programming Language ?
What is PHP ? – PHP (stands for PHP: Hypertext Preprocessor) is a widely-used open source scripting language. PHP is used for web development with HTML.
It is very simple scripting programming language for Web Software Development and also easy to learn.
PHP has opening tag <?php and closing tag ?> .
Simple PHP Program Example –
<!DOCTYPE html>
<html>
<head>
<title>PHP</title>
</head>
<body>
<?php echo "This is my first php page."; ?>
</body>
</html>
What is PHP ?