I have a UT8 encoded Flex application. It is sent back to the server (PHP), and the data is written to Mysql (UT8 charset, utf8_general_ci). I have no problem writing / reading Umlaute from / to the database.
I just realized, looking at the data with PHPmyadmin, that Umlaute is somehow converted to:
ΓΆ => ΓΒΆ ΓΌ => ΒΌ, etc.
As I said, I had no problems. The strange thing is, when I write Umlaute directly with PHPmyAdmin to the database, they are displayed correctly
Now I am printing the PDF, and I need to call ut8_decode () for all the values ββin order to display them correctly. However, those entered manually in the database (which are displayed correctly in phpmyadmin) are not decoded.
I assume that they are not written to Db in UT8, then, since decoding distorts them?
- ) But why are UT8 values ββencoded in this strange form in the database in the first place? 2.) How can I enter data in mysql with PHPmyAdmin in UTF encoding? (I established a connection with ut8).
thanks Martin
Martin
source share