I'm trying to insert some text with special characters like éé or ë into my sqlite db (column=plot TEXT). Problem is that it saves null values when the text containts special characters. In my mysql database the field has utf8 as collation.
Have you added the PHP line that sets the encoding to UTF8? It is a single line that you need to add to the PHP script. I've added it in the MySQL tutorial.
Have you added the PHP line that sets the encoding to UTF8? It is a single line that you need to add to the PHP script. I've added it in the MySQL tutorial.
I added mysql_query("SET CHARACTER SET utf8"); I deleted all the data in my mysql db, convert all columns to utf8 and loaded the data again. But still get nulls in my sqlite db. :sign0085: