Form update via connector doesn't work ...

Hi,

I’m trying to create a form to edit user in my MySQL db. But it simply won’t update the entry.
I am using the following code (this is a simple version):

[code][/code]

It fills my form with the correct data. But if I click on “change” nothing happens.
Here is my connector file:

[code]require_once(‘config_db.php’);
require_once(‘dhtmlxForm/codebase/connector/form_connector.php’);

$form = new FormConnector($conn);
$form->enable_log("log2.txt",true);
$form->render_table("test","id","name, surname");[/code]

What am I doing wrong?!

these are my included files…

[code]

[/code]

ok, now I found out…

it is the order of the javascript includes generating the error.
Now I put the connector.js and dhtmlxdataprocessor.js before the other form scripts like

[code]

[/code]

and everything’s working fine.

boy, this was driving me crazy… :confused: