PHP Programing language

adplus-dvertising
How Can create a Web Page to Mixing HTML and PHP
Previous Home Next

In this PHP Language using some HTML tags .

Example:

<html>
<head>
<title>using html tags in php programming</title>
</head>
<body>
<h1>
displaying text for php
</h1>
<?php
echo "<i>Welcome</i><br>";
echo "<u>To php</u><br>";
echo "<b>Home</b>";
?>
</body>
</html>

Output:

Previous Home Next