PHP is a server scripting language, and a powerful tool for making dynamic and interactive Web pages. This scripting language is especially can be embedded into HTML. PHP is a widely-used, free, and efficient alternative to competitors
<!DOCTYPE HTML>
<html>
<head>
<title>Example</title>
</head>
<body>
<?php
echo "Hello World";
?>
</body>
</html>