View Single Post
Old 10-30-2009, 01:47 AM   #2 (permalink)
Village Idiot
Wizard
Top Contributor 
 
Village Idiot's Avatar
 
Join Date: Sep 2007
Posts: 1,299
Thanks: 17
Village Idiot is on a distinguished road
Default

Quote:
Originally Posted by Dave View Post
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.
__________________

Village Idiot is offline  
Reply With Quote
The Following User Says Thank You to Village Idiot For This Useful Post:
Dave (10-30-2009)