my phpmyadmin always show me alien text
#1

I set my database and tables collations to utf8_unicode_ci

and added this code in my gamemode

Код:
SQL_Connect() {
    g_iHandle = mysql_connect(SQL_HOSTNAME, SQL_USERNAME, SQL_DATABASE, SQL_PASSWORD);
    if (mysql_errno(g_iHandle) != 0) {
        printf("[SQL] Connection to \"%s\" failed! Please check the connection settings...\a", SQL_HOSTNAME);
    }
    else {
        mysql_query(g_iHandle, "SET NAMES utf8 COLLATE utf8_unicode_ci"); mysql_query(g_iHandle, "set character_set_connection=utf8");
        printf("[SQL] Connection to \"%s\" passed!", SQL_HOSTNAME);
    }
}
but the result was like
Код:
єйТ№аґзЎгЛБи
how can i solve this problem?
Reply


Messages In This Thread
my phpmyadmin always show me alien text - by hbourne - 10.05.2017, 21:24
Re: my phpmyadmin always show me alien text - by zegareK - 11.05.2017, 08:07
Re: my phpmyadmin always show me alien text - by hbourne - 11.05.2017, 08:33
Re: my phpmyadmin always show me alien text - by Logic_ - 11.05.2017, 11:12
Re: my phpmyadmin always show me alien text - by Despacito - 11.05.2017, 11:32
Re: my phpmyadmin always show me alien text - by OscarMike - 11.05.2017, 12:13

Forum Jump:


Users browsing this thread: 2 Guest(s)