I want to read a france
text file that is stored as ANSI.
Part of the text file should be stored on mysql Database.
Everything is ok but i am getting strange characters like this:
No 2720 č
or like this
B?timent
here is my update statement:
// field is on mysql DB as text/utf8mb4_general_ci
$sqlupd = "UPDATE table SET field='$field' WHERE id='$id'";
$dataupd = mysql_query($sqlupd);
thanks!!!