is their any way to do the oppisite of ' r '
need to read the file starting at the bottom..
read only though
how would you expect this to work? reading backwards character by character? or line by line?
if the former, read the complete file, then use str_reverse()
if the latter, read the file linewise in an array (file()), then use array_reverse()
thanks i figured it out had to do:
$test_array = explode( "==========", $test); for ( $i=count($test_array)-1; $i>-1; $i--){ echo $test_array[$i]
seem to do the trick.
thanks for the help...