mysql - Arabic characters doesn't show in phpMyAdmin -
mysql - Arabic characters doesn't show in phpMyAdmin -
so working on project need create database in records hold both english language , standard arabic names.
i creating using phpmyadmin works fine english language names, standard arabic names appear "?????".
to solve issue tried utilize "set name 'utf8' ", didn't work. googling problem realized phpmyadmin not back upwards either standard arabic or special characters.
i not sure if there workaround issue. have suggestion solve ?
thanks in advance
first, database capable of storing unicode? show create table table_name;
show character set utf8. if not should prepare it:
alter table table_name default character set utf8 collate utf8_general_ci; alter table table_name convert character set utf8 collate utf8_general_ci;
also create sure phpmyadmin settings contain this:
$cfg['defaultcharset'] = 'utf_8'; $cfg['defaultconnectioncollation'] = 'utf8_general_ci';
mysql database phpmyadmin special-characters arabic
Comments
Post a Comment