I have many html files and now i want to call each of the files one by one using some php code. but whenever i try to run the php code for calling those html files from the folder, it doesnot work.
1.html view
2.html view
3.html view
Use the include PHP function for each html file.
example:
<?php
// do php stuff
include('fileOne.html');
include('fileTwo.html');
?>