I am currently using the following PHP code to return and format output from an .htm file:
\"; $lines = file(\"http://www.example.c
Use array_slice() to slice off the last 50 elements of $lines prior to running the foreach() { } loop.
$lines
foreach() { }
$lines = array_slice($lines, -50);