i am trying to select from SQL database (hebrew chars like שלום) and i see it like a ????? in my page i configure my html settings to UTF-8 but in phpmyAdmin i dont know what to do in the settings
thanks for help .
i am trying to select from SQL database (hebrew chars like שלום) and i see it like a ????? in my page i configure my html settings to UTF-8 but in phpmyAdmin i dont know what to do in the settings
thanks for help .
Use these to convert database/table to utf8.
ALTER DATABASE databasename CHARACTER SET utf8 COLLATE utf8_unicode_ci;
ALTER TABLE tablename CONVERT TO CHARACTER SET utf8 COLLATE utf8_unicode_ci;
How to convert an entire MySQL database characterset and collation to UTF-8?
SQL should now store and return utf-8 strings.