PHP Program to print Hello World in html tag

Program

<!DOCTYPE html>
<html>
<head>
<title>Hello Page</title>
</head>
<body>
<?php
echo "<h2>Hello World from PHP</h2>"
?>
</body>
</html>

Output

Hello World from PHP