Well, as a Webdeveloper, german language sucks.
I have a from. In the head, there is at the first place:
<meta charset="utf-8">
I also checked the header. The following is set:
Content-Type:text/html; charset=UTF-8
In php.ini my default-charset is:
default_charset="utf-8"
The problem is in HTML/PHP because when I write Umlauts (äöü) directly in the database, PHP gets the right string, when I var_dump it. On the other side when I fill out the textarea and send the form, the var_dump for the POST-Parameter has everytime 2 questionmarks instead of the Umlauts.
ä -> ??
How can I fix it?