Was there. I feel your pain. Caracter coding problems are a pain in itself. Add MySQL, php and a web server to the mix and you will have serious problems.
First, you can configure the toolbox to use IS0-8859-15.
You have to make sure that you use any tool, php, mysql server, mysql-client (configurable via my.conf or php), and the web server is configured for this character set. You should also make sure that the DB tables are ISO-8859-15, do not transfer or open data in anything not configured for ISO-8859-15, for example ... (cough cough phpMyAdmin.)
I once had problems because I opened the db dump in my UTF8 editor before loading it into the ISO-8859-1 database, and just opening it in the editor and reloading it, it messed up the file with UTF8 conversion. Of course, these problems make you want to hit your head on the wall, but believe me, follow the instructions above, find a tool that uses UTF-8, starting from the database and from there, and you can serve these special characters without changing your code.
Good luck friend.
source share