Import csv file into mysql database using php -
i trying import csv file mysql database using php arabic text doesn't shown, use mysql_query("set names utf8;");
mysql_query("set character_set utf8;");
still not working...
please check database table column's "collation" utf-8 characters.
http://dev.mysql.com/doc/refman/5.0/en/charset-column.html
alter table tbl_name convert character set charset_name [collate collation_name];
Comments
Post a Comment