blob: c229c113d1e13409532c5501c1e517ece14c1a72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
include ('../../codebase/scheduler_connector.php');
include ('../config.php');
$res= new PDO($mysql_server,$mysql_user,$mysql_pass);
$list = new OptionsConnector($res, "PDO");
$list->render_table("types","typeid","typeid(value),name(label)");
$scheduler = new schedulerConnector($res, "PDO");
// $scheduler->enable_log("log.txt",true);
$scheduler->set_options("type", $list);
$scheduler->render_table("tevents","event_id","start_date,end_date,event_name,type");
?>
|