I read the fgets page in the PHP manual but don't quite understand it yet. What does the following code do and why does it output "(32)"?
while (!feof($fp)) { echo fgets($fp, 128); }
because that's the line at from byte 1 to byte 127 of the file....
Ah, thanks.