1
I’m having a lot of issues with accentuation, first of all, I’m using WAMP Server. The charset of my site is as UTF-8, that’s why the ISO-xxx... simply uncouples the whole accent of the HTML page, anyway, I have two Fields in Mysql with accentuation that were inserted from a form of my site and this was the result: https://docs.google.com/file/d/0Bx3aT2W0xcIpcWVHbkx4YjQwcmc/edit?usp=docslist_api
On my website to "echo" these Fields in an editing form this is the result: https://docs.google.com/file/d/0Bx3aT2W0xcIpSWhmSS10YmlMcTQ/edit?usp=docslist_api As you can see the accentuation errors are gone.
These are the collations of these Fields: https://docs.google.com/file/d/0Bx3aT2W0xcIpTXlQUUxFalpqRW8/edit?usp=docslist_api
Any idea how to kill this bug?
Ever tried to use
latin1_general_ci
?– Rene Sá
No, I will try.
– Junior CT
Ultilizando UTF como Ncode vai assim para o banco, unless you use mb_encoding to save to the bank, but later when displaying the regions you will have to use reverse mb_encoding
– Daniel Gregatto
Rene Sá, your suggestion worked. Thanks.
– Junior CT