The character_set_results system variable indicates the character set in which the server returns query results to the client. This includes result data such as column values, and result metadata such as column names.To change the character encoding to UTF8 or other, you need to use "mysql_set_charset()" mysql function in PHP. Pass the correct encoding name required and now future mysql queries will return result using new encoding.
Blog/Web Development