Hi I have inherited a db which I need to use the data from. Unfortunately some of the text is spanish and has some obvious encoding issues. For example this is a typical string stored in a text field:
Clara introducción a través del transporte de me...
My question is - is there any easy way to transform these characters back to what they were using MySQL/PHP?
Any suggestions appreciated.
OK - the answer is
utf8_decode()
in PHP.