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

<?php
$file = fopen("test.txt","r");
// Read first line
fgets($file);

// Read from the current position in file - until EOF, and then write the result to the output buffer
echo fpassthru($file);

fclose($file);
?>


</body>
</html>