Get ID & other POSTed data

Hello, can some one tell me the best way to get the POST data using PHP and the scheduler connector?

Currently I’m doing this

$scheduler = new schedulerConnector($db, “PDO”);

and I would like to get the data that is posted so I can check it and perform additional functions if needed.

You can assign a custom php code to server side events, so it will be executed before or after data saving.

docs.dhtmlx.com/connector__php__ … event.html

I did know that but how I would get the POSTed variables this way?

You can use

function doUpdate($action){ //to get the updated data $value = $action->get_value("field_name"); //to get raw POST data $value = $_POST["something"]; }