I have a db in UTF-8 encoding with a mixture of Latin-1. (I think that that is the problem)
This is how the characters look in the database.
İ (should be İ)
è
When I set the header to
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
Then the characters come out as:
İ
�
When I remove the header, they come out as they are in the database. I want them to come out like this:
İ
è
I'm looking for a way to remedy this in PHP after the fact, if it is possible. I am unable to correct the data itself at this time, which would be the correct thing to do.