0
You are using different Charsets on the page and in the bank, so the problem; in the head I can think of some solutions:
- Switch bank to UTF-8. The best solution of all but may not be feasible
- Switch the page(s) (s) to the same bank charset using the corresponding tags. Not quite the best but depending on the amount of pages may be the easiest to implement.
- Do the charset conversion on the server after reading from the database and before sending the result. I smell "POG" but can be a solution. It can be done using language-specific functions that are doing the query or via database; mysql, for example, has "cast" and "Convert" functions that allow to convert the data between Charsets.
Dude, what Latin for? Has anyone ever told you about UTF-8? Try switching to utf-8!
– Sampaio Leal
already switched to utf-8 and can’t still not accept accentuation (meti utf-8 bin has not only utf-8)
– Bruno Gibellino
So, you’ll see it’s some host problem, that I know utf-8 and universal type
– Sampaio Leal
Grouping has nothing to do with display, it is only used for comparison and sorting. Important to see the table encoding if it is even latin. If you are, it’s a matter of setting up the rest of the application in the same way (page server headers, any meta tags) and setting up your code editor to save to the same encoding. Virtually all (many) site doubts about the subject are related to the fact that people mix encodings in the same application.
– Bacco