Posts

Showing posts from January, 2016

How to insert Gujarati or other langauges data to mySQL?

-> First of all create any database then execute below queries: CREATE TABLE `multi_lang` (`data` varchar( 1000 ) CHARACTER SET utf8 COLLATE utf8_bin default NULL); INSERT INTO `multi_lang`VALUES ('ગુજરાતી'); Now see your table data.