I come across a strange situation, when I try to insert German characters (ä, ä) into the database they are inserted as follows:
"üüü "
The field is set to utf8_general_ci
If you insert the data in a query directly into the database, it accepts these special characters, if you insert them through a query in php these are as previously mentioned.
I'm using the PDO
class to enter data.
What could be the cause of this problem?