My job is to migrate our current website to production. (I'm not the developer of the zend app). It's a french app, so we use a lot of french characters like "é"
Our database collapse is utf8_bin (all).
If I use a form for uploading data (for example the string "mémé"), if I look in phpmyadmin, the data is stored as mémé and the accents are correctly displayed in the app view (mémé) so no problem.
But now, if I insert data directly with phpmyadmin (mémé), data is stored as "mémé", but in my app view, the display is: m�m�.
It's a problem because we upload many data from excel files, using a python script with pymysql, and we have a lot of �.
How can I fix that ? Is it in zend configuration, because everything seems ok in my database configuration.
Thanks