I use utf-8
when inserting the nome
field in PHP , like this:
$nome = utf8_encode(strtolower($nome));
When checking how insert
is before entering, the word is correct, but when accessing the database after insertion, the word is unconfigured. I would like to know what I am doing wrong, since I have already tried to change the bank to utf-8
and still insert wrong.
Thank you in advance!