RE: [PHP] extracting data from text file

2002-07-01 Thread Beverly Steiner
---Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, July 01, 2002 5:17 PM To: php-general Subject: [PHP] extracting data from text file Hello , I have a text file that looks like this. each entry is on a different line I need to pull the data out of it and put each

Re: [PHP] extracting data from text file

2002-07-01 Thread Pushkar Pradhan
Just use file(), this is most appropriate for reading file line by line. http://www.php.net/manual/en/function.file.php > > On Monday, July 1, 2002, at 05:17 PM, [EMAIL PROTECTED] wrote: > > > I have trend this but it does not work properly > > > > $fp = @fopen(file.txt,"r"); > >

Re: [PHP] extracting data from text file

2002-07-01 Thread Erik Price
On Monday, July 1, 2002, at 05:17 PM, [EMAIL PROTECTED] wrote: > I have trend this but it does not work properly > > $fp = @fopen(file.txt,"r"); > $line = explode("\n",$fp); > $valueC = "$line[0]"; > $valueST = "$line[1]"; > @fclose($fp); What er

[PHP] extracting data from text file

2002-07-01 Thread rdkurth
Hello , I have a text file that looks like this. each entry is on a different line I need to pull the data out of it and put each line of data into its own variable US State City Company Name Section 2 www.domain.com [EMAIL PROTECTED] I have trend this but it does not work properly $fp