encoding - Converting MySQL ANSI input to UTF-8 -
encoding - Converting MySQL ANSI input to UTF-8 -
i've decided switch web app ansi utf-8. after converting encoding of hardcoded files in notepad++ (which conversion, not changing character set) , setting new meta tag utf-8, need convert database data.
this info has been inputted on ansi forms, stocked utf8_general_ci according phpmyadmin. can't alter mysql stocking encoding then, because it's right 1 (apparently?).
on web pages, accent characters (é, à, etc.) loaded db appear �.
i think found solution this blog:
update `ressources` set `title` = convert(convert(`title` using binary) using utf8); however, 0 rows affected on phpmyadmin. thought why?
mysql encoding utf-8 ansi
Comments
Post a Comment