Result Size: 625 x 571
<!DOCTYPE html>
<html>
<body>

<?php
$file = fopen("test.txt","r");
while (! feof($file)) {
  echo fgetc($file);
  }
fclose($file);
?>


</body>
</html>