Make sure your pages are set to use the utf-8 character set:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
you may also need to edit the connection to use the utf-8 character set, for example, a connection named localhost will have the following at line 9 of the Connections/localhost.php file:
$localhost = mysql_pconnect($hostname_localhost, $username_localhost, $password_localhost) or trigger_error(mysql_error(),E_USER_ERROR);
change that to:
$localhost = mysql_pconnect($hostname_localhost, $username_localhost, $password_localhost) or trigger_error(mysql_error(),E_USER_ERROR);
mysql_set_charset('utf8',$localhost);