how to insert php into html code example
Example 1: insert an html page into php
<?php
// do php stuff
include('fileOne.html');
include('fileTwo.html');
?>
Example 2: inline php in html
<body>
Hello, today is <?php echo date('l, F jS, Y'); ?>.
</body>