Quote Originally Posted by skipwater View Post
gisco

This mod is not using ADODB it is using traditional mysql.
So the script would look like this.
Code:
mysql_query("set names 'utf8'",$con);
Find the connect sql lines .
Code:
$connected = mysql_connect($target_db_host, $target_db_username, $target_db_password);
And change to this.
Code:
$connected = mysql_connect($target_db_host, $target_db_username, $target_db_password);
mysql_query("set names 'utf8'",$con);
I have not tested let us know if this worked.

Hello, thank you for the info. I have been working on this code but still not get desired result. I will try also changing some configuration of mysql.

Need more time to report the result...