I have a mysql table that is full of text that is latin encoded. I know this because even though I have the table defined as being UTF-8 encoded, and the headers sent are set to UTF-8, I receive the ugly question mark in the black diamond. The only way that I can get my data to be displayed correctly is by changing my headers to use ISO-8859-1 encoding instead.
I have tried every suggestion that I can find on SO and throughout the net, but none have worked so far.
I have attempted to do as this author suggests: https://stackoverflow.com/a/5232411/102067, but even though I was able to read the file correctly with my text reader, it didn't display properly on the website.
I am at a complete loss and open to suggestions as to how to solve this problem.
Thank you.