What is PHP? A program was written by PHP and HTML

What is PHP?

PHP is called Hypertext Preprocessor. PHP is a programming language. It is also known as the server-side scripting language. PHP is a powerful language for creating dynamic and interactive websites. It is more popular with web programmers as it is an open-source general-purpose scripting language. PHP also provides maximum security when storing information on the web. PHP can be used in conjunction with HTML. Several advanced open source content management systems (CMS), including WordPress Joomla, are built by PHP. Custom content management systems can be created using PHP. PHP is also widely used in creating e-commerce, management, online banking software, etc…

 

A program written by PHP and HTML :

File Name: index.php
<html>
<head>
<title>www.tanzimhossen.com</title>
<style>
body{background:#FFC;}
h2{color:#F03;}
h1{color:#C60;}
</style>
</head>
<body>
<?php
echo “<h1>We are learning PHP</h1>”;
echo “<br />”;
echo “<h2>Welcome to www.tanzimhossen.com.</h2>”;
?>
</body>
</html>