How can I enter data using non English (Bangla) language into this database table?
问题 How can I enter data using non English (Bangla) language into this database table ? 回答1: As pointed out by @Tim you need to change the collation of your table/database/column to UTF-8 . First check the collation of your database/table/column . CHECK COLLATION: How to check the collation of DATABASE: SELECT default_character_set_name FROM information_schema.SCHEMATA WHERE schema_name = "YOUR_DATABASE_NAME"; How to check the collation of TABLE: SELECT CCSA.character_set_name FROM information