PHP embedded within HTML:
Or, echo/print out the HTML output:
Code:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<?php
// put your code here
?>
</body>
</html>
PHP:
<?php
echo "<html>\r\n<head>\r\n<title>Title</title>\r\n</head>\r\n<body>\r\n";
// put your code here
echo "</body>\r\n</html>";
?>