03.2: Html Mix
In this lesson we will look at how to mix PHP and straight HTML in the same file.
<html> <title>test page</title> <body> <p> This is straight html. </p> <?php echo "<p> This is php echoing html. </p>"; ?> </body> </html>