Re: [PHP] Someone Help please

2002-07-18 Thread Analysis & Solutions
On Thu, Jul 18, 2002 at 11:06:11AM -0400, Chris Crane wrote: > Well, I posted it the first time and no one responded so I figured the > subject did not interest anyone. I changed it. I am not sure how the third > one started. We're all here volunteering, trying to help each other out. If you wan

Re: [PHP] Someone Help please

2002-07-18 Thread Chris Crane
Well, I posted it the first time and no one responded so I figured the subject did not interest anyone. I changed it. I am not sure how the third one started. But hey thanks for watching and giving you unwanted opinion. "Analysis & Solutions" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED

Re: [PHP] Someone Help please

2002-07-17 Thread David Robley
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > Chris: > > Geez, this is your third thread on this today... Lame. > > --Dan > > There is none deafer than (s)he who won't listen :-) -- David Robley Temporary Kiwi! Quod subigo farinam -- PHP General Mailing List (http://www.p

Re: [PHP] Someone Help please

2002-07-17 Thread Analysis & Solutions
Chris: Geez, this is your third thread on this today... Lame. --Dan -- PHP classes that make web design easier SQL Solution | Layout Solution | Form Solution sqlsolution.info | layoutsolution.info | formsolution.info T H E A N A L Y S I S A N D S O L

Re: [PHP] Someone Help please

2002-07-17 Thread Chris Crane
I will try it now...Thank you. "John Holmes" <[EMAIL PROTECTED]> wrote in message 000301c22dbe$b5caacf0$b402a8c0@mango">news:000301c22dbe$b5caacf0$b402a8c0@mango... > File() will read the file into an array, each element of the array will > be a line from the file. Explode() will then split that l

RE: [PHP] Someone Help please

2002-07-17 Thread John Holmes
File() will read the file into an array, each element of the array will be a line from the file. Explode() will then split that line by the delimiter you choose... So something like this: $file = file("filename.txt"); foreach($file as $line) { $part = explode(',',$line); //now you have an ar