Topic: UTF8 double encoding
So, I have some UTF8 encoding character. I have setup my mysql collation to utf8. I also make sure before querying into the database, I setup the encoding for the php-mysql connection using mysql_set_charset function. It works fine and I have checked it is stored in the database as UTF8. If I query a string using the utf8 character, it returns what I want.
Then I setup the installed language encoding into utf8. I just realized there are something wrong. It doesn't display the character correctly. I think if I set it to utf8 in the installed language, FA seems decode the utf8 again although from the database, it is already utf8. Then I changed the encoding in the installed language into standard iso encoding and it works.
My question is, is it normal like this? How does FrontAccounting handle the character encoding?