Result Size:
625 x 571
<
!DOCTYPE
html
>
<
html
>
<
body
>
<?php
$file = fopen(
"test.txt"
,
"r"
);
//Output lines until EOF is reached
while
(! feof($file)) {
$line = fgets($file);
echo
$line.
"<br>"
;
}
fclose($file);
?>
<
/body
>
<
/html
>