Doesn't seem to work for me. This is what I have (not exactly, but close enough of what I have).
$filename = "/path/to/html_page.html";
$fl = fopen($filename, "r");
$main_text = fread($fl, filesize($filename));
fclose($fl);
$main_text = addslashes($main_text);
eval("\$main_text = \"$main_text\";");
$main_text = stripslashes($main_text);
I should then be able to print it out with any of the <? echo "hey"; ?> inside being executed?