So i was asked to build a flex application to store clients for a local business. However it needs to store the clients using Greek characters. My problem is that when importing a name in the datagrid in Greek it work Λεωνίδας When i try to put it in the database using phpmyadmin it seems to be ok but then it comes like ??????????? in the datagrid. My set is flex application connecting to mysql using php services. I have setted the encoding of the database to be utf8-general with no luck. Im not sure if this is a problem with flex or with the services. Any ideas?
Share
So after a bit of research in greek flex and php forums i found out a solution. in order to access any utf8 language from flex the only thing that needs to be done is to add
before any sql statements in the methods of the service files (getAllSomething). This will allow to write and retrieve utf8 charsets in any language without a problem.
i hope this will be helpful to other flex developers as well.