I'm importing several CSV files into my MySQL table to populate it. A couple of the files have multiplication symbols in their rows, like: 4×14mm. The import keeps failing when it encounters these symbols, so as a temporary solution I have just replaced them with the letter x, like: 4x14mm. This solution is passable, but I'd really like a proper multiplication symbol if possible. Is this possible?
Asked
Active
Viewed 83 times
0
-
Worked perfectly! Thanks Tim! – Brad Sep 22 '16 at 01:25
-
I was having trouble with jQuerty rendering these elements after they have been retrieved from the db (not sure why) so rather than changing the char-set to try to handle them, I just replaced them with '×' which did the trick nicely. – Brad Sep 23 '16 at 01:35