dhtmlxDataProcessor - no response from server

Hi
I have an application that uses dhtmlxDataProcessor.

I have written my own server side script. It updates the records correctly in the associated database but I get no response from the server.

I am using the “debug” tool. clicking on the “paramters” shows all the passed variables as expected. When I click on “details” it is blank.

Below is an extract from the script
<PHP
header(“Content-type:text/xml”);
$gr_id=$_GET[‘gr_id’];
$option=$_GET[’!nativeeditor_status’];




echo’<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>’;
echo’’;
echo’’;
echo’’;
?>

Any advice on what I am doing wrong would be greatly appreciated.

Regards

Angus

Most possible scenario - you have some error in DB updating code and show_errors off in php settings, so script fails before reaching “echo” commands, but because error showing is disabled - doesn’t output error info.

Problem still exists.

I have PHP error checking switched on. No errors are reported and the PHP scripts for adding and updating the mysql records work as expected!!!

I am at a loss.

Angus