10-30-2009, 01:48 PM
|
#5 (permalink)
|
|
The Acquainted
Join Date: Apr 2008
Posts: 110
Thanks: 97
|
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.
|
|
|
|