I have a txt file that I want to read backwards, currently I\'m using this:
$fh = fopen(\'myfile.txt\',\'r\'); while ($line = fgets($fh)) { echo $line.\"
Try something simpler like this..
print_r(array_reverse(file('myfile.txt')));