I have this xml file to parse:
<?xml version="1.0" encoding="utf-8"?>
<Exchange_Rates>
<Actual_Rates>
<Bank>
<Name>АКРОПОЛЬ</Name>
<Url>http://bank...</Url>
</Bank>
</Actual_Rates>
</Exchange_Rates>
I parsed it in to a database, everything worked just fine, I could read and write the name of the bank with mysql database correctly in Russian (АКРОПОЛЬ). But the problem was in the phpMyAdmin, I couldn't edit database with phpMyAdmin because the name wasn't showed correctly.(ÐКРОПОЛЬ) I had set up the colation in both database and table to utf8_general_ci. Any helps?