<?php
$file=$_SERVER['QUERY_STRING'];

$html_head = <<<HTML_HEAD
<html>
<hrad>
<title>そーすびゅーあ</title>
</head>
<body>
<font size=+2>${file}の中身</font>
<hr>

HTML_HEAD;
echo mb_convert_encoding($html_head,"SJIS","EUC-JP");

$fp=@fopen("$file","r") or die("Error! Can't open the file.");
while(!feof($fp)){
$temp=htmlspecialchars(chop(fgets($fp)))."<br>\n";
echo mb_convert_encoding("$temp","SJIS","EUC-JP");
}
fclose($fp);

echo mb_convert_encoding("<hr>\n</body>\n</html>","SJIS","EUC-JP");
?>

どうよ。ローカルでは結構便利かも。
ビューアより見やすい・・・ことはナイカ・・orz