Why won't the following query work on the accented characters in my column?
UPDATE people SET firstname = REPLACE(firstname,'à','a');
It works fine when I do:
UPDATE people SET firstname = REPLACE(firstname,'e','a');
The database character set is utf8mb4. I've tried changing the column's collation, but that didn't work.
Edit: I added this before my query and it worked:
mysqli_set_charset($conn,"utf8mb4");