summaryrefslogtreecommitdiffstats
path: root/samples/security/scheduler_csrf.php
blob: 670571450789aa55c2bed750186f15a87385a470 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
	require_once("../config.php");
	$res= new PDO($mysql_server,$mysql_user,$mysql_pass);
	

	require("../../codebase/scheduler_connector.php");

	ConnectorSecurity::$security_key = true;

	$_GET["id"] = 810;

	$grid = new JSONSchedulerConnector($res, "PDO");
	$grid->render_table("events","event_id","start_date, end_date, event_name");
?>