Hi Everybody, I have an MySQL problem I am making a Russian website but I can´t get the Cyrillic Alphabet to go throught the database and show it correctly in the web browser. All I see in the webbrowser is ????? instead of the Cyrillic words I have added in the database. Does anyone know what to do? Thanks a lot, // Jimbo
Make sure that the table encoding is CP866 or ISO-8869-5 and the server is set for the same encoding. You may need to manually set a header or something else to force the encoding on the website.
Try MySQL command 'SET NAMES cp1251' before work with database. And try (for PHP): header('Content-type: text/html; charset=cp1251') Texts inside MySQL are stored in what encoding?