I'm having some difficulty with having latin characters converted from either HTML entity or Word to stay converted. I'm using a replace that works on the first time, but subsequent form submissions corrupt them. A few letters, like á and é, always work. I'll use the letter ú for my example.
I have 2 possible filters for when converting for database storage:
sText = Replace(sText, "ú", "ú")
sText = Replace(sText, "ú", "ú")
However, it never keeps its HTML entity value when retrieving from the database. I get lots of additional question marks and other odd characters. Can anyone provide some assistance into this?
Oh, and I'm using UTF-8 so the charset isn't the problem.
I have 2 possible filters for when converting for database storage:
sText = Replace(sText, "ú", "ú")
sText = Replace(sText, "ú", "ú")
However, it never keeps its HTML entity value when retrieving from the database. I get lots of additional question marks and other odd characters. Can anyone provide some assistance into this?
Oh, and I'm using UTF-8 so the charset isn't the problem.