[PHP-DB] Re: newbie lost on data import... part 3

2003-08-14 Thread jsWalter
OK, now I am really sure it has to do with the vars I defined from my text file... Once I have the text file open, I'm looping through it... // pull RETURN off the end $trimmed = rtrim($lines[$x]); // Pull apart array element list($strDate,$strNum,$strName) = explode (\t, $trimmed); //

Re: [PHP-DB] Re: newbie lost on data import... part 3

2003-08-10 Thread John W. Holmes
jsWalter wrote: OK, now I am really sure it has to do with the vars I defined from my text file... Once I have the text file open, I'm looping through it... // pull RETURN off the end $trimmed = rtrim($lines[$x]); // Pull apart array element list($strDate,$strNum,$strName) = explode (\t,

Re: [PHP-DB] Re: newbie lost on data import... part 3

2003-08-09 Thread jsWalter
John W. Holmes [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] jsWalter wrote: // Spit it out to double check what I've got echo '' . $strDate . ' - ' . $strNum . ' - ' . $strName . ' p /'; So does this echo display anything? It spits out... 1974-01-09 - 4 - Lost Dog