o site não está reconhecendo caracteres especiais. mas ja esta tudo definido como utf-8 no banco de dados e nos scripts. tudo indica que não esteja definido no arquivo php.ini,mas não tenho acesso para encontrar ele.
usuario: epiz_33671504
TRANSLATED BY MOD
The site is not recognizing special characters. but everything is already defined as utf-8 in the database and in the scripts. everything indicates that it is not defined in the php.ini file, but I do not have access to find it.
Also the charset declaration should be in the first few lines (not on line 110)
For a charset problem (maybe it has something to do with the above but it also doesn’t have to),
you need to see which characters are displayed incorrectly and then check in various places until you find the source of the problem
If you’re writing the database connection code yourself, please pay attention to the connection charset. phpMyAdmin uses UTF-8 by default, but PHP is configured to use latin1 by default, which results in compatibility issues. To fix this, you’ll need to configure the connection charset in your own code to use UTF-8.