Hi, I have to create a database, with text with three different languages... what should i do to make the text ok in all of them, Thanks, Cooker
Create a UTF8 Database. What languages do you will use ? The utf8 unicode collation is different between languages ...
Try: CREATE DATABASE db DEFAULT CHARACTER SET utf8; CREATE TABLE table (name VARCHAR(255) , id INT) DEFAULT CHARACTER SET utf8; Store in name both Polish and Russian chars (for english will not be a problem) and test to see if is all ok. Be aware, your Webserver should also know UTF8 . Regards