03.2: Html Mix

In this lesson we will look at how to mix PHP and straight HTML in the same file.


https://www.youtube.com/watch?v=CCZwWBdltCk





<html>
<title>test page</title>
<body>

<p>
This is straight html.
</p>


<?php

echo "<p>
This is php echoing html.
</p>";

?>

</body>
</html>