$data = file ($certain_file);
echo "{$data[0]}\n";
echo "{$data[3]}\n";
echo "{$data[7]}\n";
Valentin Petruchek (aki Zliy Pes)
*** Cut the beginning ***
http://zliypes.com.ua
mailto:[EMAIL PROTECTED]
- Original Message -
From: "John Gurley" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent
$data = file ($certain_file);
echo "{$data[0]}\n";
echo "{$data[3]}\n";
echo "{$data[7]}\n";
Valentin Petruchek (aki Zliy Pes)
*** Cut the beginning ***
http://zliypes.com.ua
mailto:[EMAIL PROTECTED]
- Original Message -
From: "John Gurley" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent
The only way that works fine for me is to read a file char by char. When you
read the \n character add the readen chars in array's position.
Here is an example
$fp = fopen ("myfile","r");
$txtarr = array();// array to store each line of your file
$linenum = 1; // just a counter
$lin
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 ou
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
5 matches
Mail list logo