tags:

views:

56

answers:

1

I am trying to figure out how we can run a html file within a php script.

+3  A: 
include('my_html_file.html');
Jhong