form.load not working

Hi:

i’m new using this forum, i’am trying to connect a form with a table in Mysql.

Table name = seg_usuario
My html code:

Clave:
Nombre:
Email:
Activo:

My php conector…

<?php require_once("../dhtmlxConnector_v10_php/codebase/form_connector.php"); // componente de conexion $dbhost="localhost"; $db="cobranza"; $dbusuario="xxxx"; $dbpassword="xxxx"; $conexion = mysql_connect($dbhost, $dbusuario, $dbpassword); mysql_select_db($db, $conexion); $formConn = new FormConnector($conexion,"MySQL"); $formConn->render_table("seg_usuario","id_usuario","clave,nombre,email,activo"); ?>

The problem is when i select the button:
Error Type: LoadXML
Description: Incorrect XML

but i’m not using XML i want to read the info directly from mysql db.

can you help me please.

solution:

agregate

<script src="../dhtmlxForm/codebase/dhtmlxdataprocessor.js"></script>
<script src="../dhtmlxForm/codebase/connector/connector.js"></script>

and the capital letter was wrong in the bind.

Regards,
Siqueiros