how to embed html files in php code?

Use the include PHP function for each html file.

example:

<?php
// do php stuff

include('fileOne.html');
include('fileTwo.html');

?>

Leave a Comment