I am trying to get a row from a table that contains a value Boris Borenović.
Returns instead Boris Borenovi?.
There is a set of settings in my database and MySQL table utf8_unicode_ci.
My PHP page that displays data from a table that contains the following header: <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />. I also tried with charset=utf-8, but it still doesn't work.
The Sql command used to query data from a table SELECT * FROM contact, so there is nothing special, just a boring simple query. I tried with SELECT * FROM contact COLLATE Latin1_General_CI, but this request could not be completed.
How do I make it work? Thank you
Boris source
share