- in the table where telugu words need to be stored, u need to set coalition accordingly
ALTER TABLE <table_name> CONVERT TO CHARACTER SET utf8 COLLATE utf8_unicode_ci;
- before executing insert/select query - mysql_query("SET NAMES utf8")
- put html header or php header to set charset to utf-8
- set charset to utf-8 on mysql connection
ALTER TABLE <table_name> CONVERT TO CHARACTER SET utf8 COLLATE utf8_unicode_ci;
- before executing insert/select query - mysql_query("SET NAMES utf8")
- put html header or php header to set charset to utf-8
- set charset to utf-8 on mysql connection
No comments:
Post a Comment