Saving changes

Hi…

I need some help with the changes made on the client-side into the database. When we make changes on the Scheduler, we need to save those changes on the database. Can you help me with that?? Thank you!!

Best regards!!

docs.dhtmlx.com/doku.php?id=dhtm … ntegration

Client-side:

scheduler.init(‘scheduler_here’,null,“month”);
scheduler.load(“events.php?uid=”+scheduler.uid());

var dp = new dataProcessor(“events.php”);
dp.init(scheduler);
Server-side:

include (‘dhtmlxConnector/codebase/scheduler_connector.php’);

$res=mysql_connect(“localhost”,“root”,"");
mysql_select_db(“sampleDB”);

$calendar = new SchedulerConnector($res);
$calendar->render_table(“events”,“id”,“event_start,event_end,event_text”,“type”);

Luciana,
Do you now what the “events.php” file stands for?? What is it suppose to be in it?? Thank you!!

Best regards,

Patricio


Hello,
it should be some data feed, like one from this article
docs.dhtmlx.com/doku.php?id=dhtm … #connector