Is there a tool that would convert the entire HTML file to PHP file with echo functions to display that HTML?
$lines = file("page.html"); foreach($lines as $line) { echo 'echo "' . addslashes(trim($line)) . "\";\n"; }
i tested that, it works