I just through this together. It's ugly. But it works
<?php
$FH=file("test.txt");
$FH=array_flip($FH);
$FH=array_reverse($FH,1);
$FH=array_flip($FH);
$x=(count($FH)-1);
while($x>=0)
{
echo("$FH[$x]<br>");
$x--;
}
?>
As soon as I get to my house, I'll try to come up with something a little prettier. I'm without my manual right now
HTH