0
votes
1answer
191 views

& converted to &amp between sql and saving to database [closed]

I have a sql query running from my php page. It stores various text. If I try to store &, it is stored in the database as &. I do not know why. I have output the sql that is being run and ...
0
votes
1answer
128 views

Convert All mysql Text to ascii form

I have a mysql database that has text stored in it with non encoded special characters. Example, there is are cells in a table that has text like Texas A&M I want all of the text in my database ...
2
votes
2answers
2k views

How to convert letters with accents, umlauts, etc to their ASCII counterparts in Perl?

I'm writing a program that works with documents in Perl and a lot of the documents have characters such as ä, ö, ü, é, etc (both capital and lowercase). I'd like to replace them with ASCII ...