0
I’m having some problems in identifying special characters from the database. I decode in UTF-8 in the database:
ALTER DATABASE meuBanco CHARACTER SET utf8 COLLATE utf8_unicode_ci;
And also in HTML:
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
But the characters still don’t work.
Is there any property for decoding by PHP?
Thank you very much!
– g_codex