UTF8 Problem, incorrect display of special characters… (é, É, å, ä, ö etc.)
Are you still facing problem, when display the special characters…(£,é, É, å, ä, ö etc.) ? Here is the solution to fix the issue. Firstly, make sure that your database table is set to character set UTF-8. So you must create the database, with UTF-8 encoding. Create a new database, with UTF-8 encoding
1 |
CREATE DATABASE database_name DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; |
Or If you have created the database already, you need to convert it to UTF-8 encoding First, backup! and alter the […]