1

enter image description here enter image description here

Language text changed to gibberish text while importing the Db to phpmyadmin. But in the DB file have correct language text, and it will changed while importing the DB. This is an wordpress website and the changed happened in WP_POSTS table. We have used WPML Plugin.

kumar
  • 71
  • 1
  • 9

1 Answers1

1

Use UTF-8 when you create a table

create table table_name () CHARACTER SET = utf8;

also use this when inserting into table

set [fieldname] utf8; INSERT INTO [tablename] (abc,val);