I have a table with some text and text is greek letters, when i use sql tool and select the data from this table is showing correctly
I faced the same problem while implementing Greek Characters. The solutions like mysql_query("SET NAMES 'utf8'");
mysql_query("SET CHARACTER SET 'utf8'"); did not work for me. After Googling, I found that, the character set for the database collation should be made greek_general_ci along with the field where data would be stored like categoryname etc. This solved my problem.