RE: [PHP] read file from specific line

2005-01-27 Thread Jay Blanchard
[snip] Is there any way reading a file from a specific line? (textfile) [/snip] Yes. Loop through a count until you reach the line you want, then read while(!feof($myFile)){ if("lineNumberIWant" >= $i){ read line $i++; } else {

[PHP] read file from specific line

2005-01-27 Thread gustav
Hi there! Is there any way reading a file from a specific line? (textfile) /G @varupiraten.se -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php