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

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

	ConnectorSecurity::$security_key = true;

	$grid = new TreeConnector($res, "PDO");
	$grid->render_table("tasks","taskId","taskName","","parentId");
?>