<?php
$html = implode( file('http://www.highschool-manzai.com/blog/2011/entries.html'));
$html = ereg_replace("\r|\n"," ",$html);
$html = ereg_replace("&amp;","&",$html);
$trans = get_html_translation_table(HTML_SPECIALCHARS);
$trans = array_flip($trans);
$html = strtr($html, $trans);
?>
document.write('<?php print($html); ?>');