query dhtmlxscheduler_recurring in mysql

I am currently using the dhtmlxscheduler_recurring and saving the output to a mysql server.

I save all of the fields in the following documentation:

t3live.com/resources/dhtmlxS … vents.html

I need to query the database to get all of the events that are happening today. I need to do this server side. (Please remember that this is using recurring events)

Can someone help? Thanks! :smiley:

In order to retreive events on the server side, you may try using a helper class from scheduler wordpress plugin
github.com/DHTMLX/scheduler-wor … Helper.php

$helper = new SchedulerHelper($mysqlconnection, $tablename); $events = $helper->get_dates("2014-01-01 00:00:00", "2015-01-01 00:00:00");