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

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


</body>
</html>