[PHP] printing files

2002-02-13 Thread John Gurley
Just a quick question, is there a way to echo in your php code lines of a file that you specify. i.e. you want to output lines 1,4,7 of a certain text file Thanks John _ Join the world’s largest e-mail service with MSN Hotmail.

Re: [PHP] printing files

2002-02-13 Thread Edward van Bilderbeek - Bean IT
just put the lines in an array, each array element contains a line... and then just print the specified array elements... Edward - Original Message - From: John Gurley [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 13, 2002 12:55 PM Subject: [PHP] printing files

Re: [PHP] printing files

2002-02-13 Thread Henning Sprang
Hy, John Gurley wrote: Just a quick question, is there a way to echo in your php code lines of a file that you specify. i.e. you want to output lines 1,4,7 of a certain text file use the fopen and fread functions, to read lines from a file, only put the wanted lines into a string and

Re: [PHP] printing files

2002-02-13 Thread Dimitris Kossikidis
PROTECTED] Sent: Wednesday, February 13, 2002 1:55 PM Subject: [PHP] printing files Just a quick question, is there a way to echo in your php code lines of a file that you specify. i.e. you want to output lines 1,4,7 of a certain text file Thanks John

Re: [PHP] printing files

2002-02-13 Thread val petruchek
, February 13, 2002 1:55 PM Subject: [PHP] printing files Just a quick question, is there a way to echo in your php code lines of a file that you specify. i.e. you want to output lines 1,4,7 of a certain text file Thanks John

Re: [PHP] Printing files

2002-02-13 Thread val petruchek
, February 13, 2002 1:55 PM Subject: [PHP] printing files Just a quick question, is there a way to echo in your php code lines of a file that you specify. i.e. you want to output lines 1,4,7 of a certain text file Thanks John