On Friday 17 January 2003 20:59, Artur Bereśniewicz wrote: > how can I open text file and start reading in the middle of it?
AFAIK it's not possible to jump directly into the middle of a file and start reading. You would have to read it line-by-line until you get to the part you're interested in. If the file isn't large (say less than several MBs) then just read it all into an array using file() and process it from there. -- Jason Wong -> Gremlins Associates -> www.gremlins.biz Open Source Software Systems Integrators * Web Design & Hosting * Internet & Intranet Applications Development * /* You definitely intend to start living sometime soon. */ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php