How can a basic string comparison be performed on russian (cyrillic) characters ?

thanks in advance

link|improve this question

2  
Any chance you can provide some test data, and any methods you have tried thusfar? We're here to help, but you should try and help yourself first, and give us enough material to try and assist you with working out a solution. – Lucanos Apr 24 '11 at 11:56
Yeah, you should really start adding more context to your questions. This is not enough information by far to solve whatever problem you are facing. – Pekka Apr 24 '11 at 12:01
Im sorry for the incomplete question. The thing is I am able to display a query which have russian characters, but the same query if executed through php enters meaningless symbols into the database INSERT INTO data(name) VALUES('Компа'),('ОО "Гарм"'),('Нефтая компания "ЛУКйл"') The same query if copy pasted into the db, the values are correctly entered. If this query is executed from php enters meaningless symbols – – Dhiraj Bodicherla Apr 24 '11 at 19:39
feedback

1 Answer

up vote 2 down vote accepted
//connect to the db

//make sure you set the charset to utf8 before you insert.
mysql_set_charset('utf8',$link);
link|improve this answer
That worked like a charm :) Thank you very much vijay – Dhiraj Bodicherla Apr 25 '11 at 10:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.