i hav a database that contains spanish characters. to populate the database i am getting the values from client page which has character encoding=UTF-8. when i insert the values in mySql database the rows contain altered data. for example if i insert ‘México’, the entry in the database is ‘México’. the impact this has is when i do a query on the table specifying ‘México’, i get no results. my question is how do u insert spanish or other latin accent in mysql database? i hav tried all the collations, htmlentities() etc but nothing works!!
when making mysql query i checked what data is being sent and it is in its correct form ‘México’ but when i see the table entry through phpmyadmin, its altered!!
i hav a database that contains spanish characters. to populate the database i am
Share
Change your mysql database/ table / column encoding to UTF-8 (and also set the collation to a compatible value).
Also specify the char set at the PHP side when connecting.
Take a look at this article for further info and a script to batch change every table / column in a database.