MYSQLI插入其他语言problam [重复]

This question already has an answer here:

I am using other language to save that in the phpmyadmin, but it's working like that :

mysqli_query($con,"SELECT * FROM list");
mysqli_query($con,"INSERT INTO list (title,content) 
VALUES ('other language TITLE', 'other language CONTENT ')");

and it's showing in phpmyadmin like that :

ვáƒáƒšáƒ”რი გელბáƒáƒ®áƒ˜áƒáƒœáƒ

any solutions please?

</div>

it's a charset problem. when you create table (or db) set collation to utf8_general_ci. if the problem is not about table, maybe there's wrong charset in your phpmyadmin or in browser(charset shoudl be set to utf8)

Thanks all, I did

 mysqli_query($con , "SET character_set_results = 'utf8', character_set_client = 'utf8', 
  character_set_connection = 'utf8', character_set_database = 'utf8', 
  character_set_server = 'utf8'"); 

IT WORKED