RE: [PHP] Files question

2003-10-30 Thread Jay Blanchard
[snip] How can i read all files line by line? I am running windows. I know that there is then a \r\n but i don't know how to extract them... Can you help me? [/snip] start with http://www.php.net/fopen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Files question

2003-10-30 Thread Bas
Now sorry... I already know to use fopen... I want a script that parses all lines from a file... Just like a loop that with every time it is executed, it echos a line from the file... (this is just a example... else i was using file_get_contents and nl2br...) Jay Blanchard [EMAIL PROTECTED] wrote

RE: [PHP] Files question

2003-10-30 Thread Jay Blanchard
[snip] Now sorry... I already know to use fopen... I want a script that parses all lines from a file... Just like a loop that with every time it is executed, it echos a line from the file... (this is just a example... else i was using file_get_contents and nl2br...) [/snip] Well, Bas, the fopen

RE: [PHP] Files question

2003-10-30 Thread Ray Hunter
Well, Bas, the fopen and it's associated manual pages describe just how to do this. Basic example $theFile = fopen(myfile.foo, r); //open the file for reading while(!feof($theFile)){ // while the file is not at the end of the file $theLine = fgets($theFile, 1024); // get a line,