<?
$file = fopen("fileread.php", "r");
$data = fread($file, 1000);
$fixed_data = htmlentities($data);
print("<pre>$fixed_data<pre>");
?>