Ok here is what I'm trying to do:
I have two pages template.php and template.html
Template.php contains all my includes scripts and all the rest
Template.html is blank
They both are copied to the filename I specify in my other script. I enter the name in the box eg rob1
And two pages are generated (templates copied) rob1.php and rob1.html
How do I make it so that in rob1.php there is an include to rob1.html
Inside the php of rob1.php I want <?php include(“rob1.html”)?>
How would I go about doing this?