dhtmlxConnector => XML Error

Hello everybody,

I’m trying to work with dhmlxConnector, but now there is a mistake on the XML-File

This is the code

<?php
	require("./../dhtmlxConnector/codebase/grid_connector.php");
	$res=mysql_connect("mysql3.000webhost.com","a1613216_0","*****");
        mysql_select_db("a1613216_0");
 
	$gridConn = new GridConnector($res,"MySQL");
	$gridConn->render_table("atleten_2013","id,Voornaam,Naam,Geslacht,Geboortedatum,Opmerkingen,Categorie,VAL,ICE");
?>

I tried to find a solution with google, but for now I didn’t find the answer…
What is my fault?

Greetz
PS As attachment you find the structure of my DB…


The solution was very easy :slight_smile:
It was a problem with the UTF-8…

Setting this rule in the file ant it works.
mysql_query(“SET NAMES ‘utf8’”);

Topic can be closed or removed from this forum…