RE: [PHP-DB] [php] file open

2003-03-24 Thread Christian Rosentreter
>> -Original Message- > From: Snijders, Mark [mailto:[EMAIL PROTECTED] > Sent: Monday, March 24, 2003 1:30 PM > To: [EMAIL PROTECTED] > Subject: [PHP-DB] [php] file open > i'm using the next code: > > $fp=fopen("WBSMUTA.CSV","r"); >

Re: [PHP-DB] [php] file open

2003-03-24 Thread 2b4ever php
hello, i'm using the next code: $fp=fopen("WBSMUTA.CSV","r"); while (!(feof($fp))) { $data_file=fgets($fp,4096); echo "$data_file"; } to open a file... but I want to read it from line 3.. and there is a special function for, but can't find it back :( can someone tell me the nam

[PHP-DB] [php] file open

2003-03-24 Thread Snijders, Mark
hello, i'm using the next code: $fp=fopen("WBSMUTA.CSV","r"); while (!(feof($fp))) { $data_file=fgets($fp,4096); echo "$data_file"; } to open a file... but I want to read it from line 3.. and there is a special function for, but can't find it back :( can someone tell me the n