I\'m trying to read a specific line from a text file using php. Here\'s the text file:
foo foo2
How would I get the content of the seco
You have to loop the file till end of file.
while(!feof($file)) { echo fgets($file). ""; } fclose($file);