I'm importing data from a CSV file to a database. In the CSV file there are a lots of strange characters like (é, ë, ...) that need to be converted to é, ë to store in the database. Right now all strange characters are converted to a questionmark. But what function do I use to convert them. HTML_ENTITIES, utf8_decode, ...?
I'm using UTF8
Well... it would be
htmlentities($string, ENT_COMPAT | ENT_HTML401, 'UTF-8');
. But the approach is wrong.Checklist:
str_replace('e', 'é', $foo)
) this file is UTF-8SET NAMES 'utf8'
for MySQL)Content-Type
header (or meta-tag) of your page tells the browser to expect UTF-8