I have a website where the database mysql collation was in latin_1 and the php files were set with <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
.
Now, the old website worked with PHP 5.4, I'm working with a 5.6 right now so I had to make lost of translations and changes. I'm still working on them, but I still have problems with speciale characters. I changed the db collation with UTF8mb4_unicode_ci and changed the charset of the files where it was written with <meta content='text/html; charset=UTF-8' http-equiv='Content-Type'>
I still get errors, seeing sometimes Ã
for é
and �
for '
. Is there something I'm missing? Did I do something wrong? Thanks in advance.