post value send
11 years ago.
i using test tutorialjavascripteventcalendarphp. and i have question.
I would like to know how to send post the value of the variable (to backend_events.php) in the code below.
thanks.
DayPilot.request("backend_events.php", function(result) {
var data = eval("(" + result.responseText + ")");
//dp.events.list = data;
//dp.update();
for(var i = 0; i < data.length; i++) {
var e = new DayPilot.Event(data[i]);
dp.events.add(e);
}
});
DayPilot