10-30-2009, 01:47 AM
|
#2 (permalink)
|
|
Wizard
Join Date: Sep 2007
Posts: 1,299
Thanks: 17
|
Quote:
Originally Posted by Dave
I'm working on learning how a particular script works. The script imports a comma-delimited text file, and outputs the contents to an HTML table.
The file contains a name field, i.e., "Doe, John" (with comma).
The CSV files are comma-delimited, so I cannot use another character for the delimiter.
Is there a solution to this?
Thanks,
Dave
|
Encode the commas to their ASCII value (,). HTML pages will display this without any further modification.
|
|
|
|