Re: [PHP-DB] Read lines

2001-03-26 Thread [EMAIL PROTECTED]
To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, March 26, 2001 12:34 PM Subject: RE: [PHP-DB] Read lines > HTH... > > $file = "YOUR URL/FILE HERE"; > $open = fopen($file, "r"); > $search = fread($open, FILE SIZE IN BYTES); > fclo

Re: [PHP-DB] Read lines

2001-03-26 Thread Felix Kronlage
On Mon, Mar 26, 2001 at 12:38:38PM +0200, [EMAIL PROTECTED] wrote: don't know why this is on php-db > I want to read lines from a file between And read the file line by line, match every line with a regexp. If you hit the line start stuffing the lines in array. Once you hit the line st

[PHP-DB] Read lines

2001-03-26 Thread [EMAIL PROTECTED]
Hello, I want to read lines from a file between And Can someon help me. Walter