View Single Post
Old 10-30-2009, 01:48 PM   #5 (permalink)
Dave
The Acquainted
 
Dave's Avatar
 
Join Date: Apr 2008
Posts: 110
Thanks: 97
Dave is on a distinguished road
Default

Right. That's the problem.

The comma-delimited CSV file contains commas in the NAME field (e.g., "Doe, John"), but my delimiter in the program I'm studying is a "," (comma).

Thus, when the file is read, it produces the following in an HTML table:

PHP Code:
// NAME    ID     
// Doe     John      9999

// What I need is this:

// NAME           ID     
// Doe, John      9999 
Thanks.
Dave is offline  
Reply With Quote