is their any way to do the oppisite of ' r '
need to read the file starting at the bottom..
read only though
You want to read starting at the bottom and read backward, then it's not possible...If you really need to do that, I'd suggest you read the whole file into a string, and then use strrev() to reverse the string.
Diego