I migrate to another ISP with my website and I have problem. I ake dump my mySQL database, import in new ISP and when connect from web I have bad signs like: "wy??�?czy?? si�? podczas u??ywania, nie uruchamia si�?,"
I'm from Poland so I use local signs like ę, ą etc. I don't know where is the problem with charset, I don't change this in database. How I can convert this database or another resolve this problem?
function db_connect(){
$connect_support = mysql_connect(SQL_SERVER, SQL_USER, SQL_PASS)
or die('bd server');
mysql_select_db(SQL_DB)
or die('table');
//$charset = mysql_client_encoding($connect_support);
//echo "Charset is: $charset\n";
}