I'm from Hungary, and our language use the letter "ő". If I upload anything to my mysql database through php, to a latin1_swedish_ci encoded column, it ends up being weird, but after all when I fetch some datas from the database I can easily use a utf8_decode($string) to be compatable with my utf-8 meta charset.
At the contacts part of my page, there's a simple e-mail form, which sends the strings via a form to an e-mail address. Problem is, I've tried different encodings, and the best was utf8_decode($string) but it still prints out the letter "ő"(s) as question marks when I get the mail.
For example: Törtető emberiség védelmezője becomes Törtet? emberiség védelmez?je
Any ideas for a better encoding/decoding ?