summaryrefslogtreecommitdiffstats
path: root/samples/treegrid/03_sql_config_connector.php
blob: f625a32db9b641fbd1d8a2579e83b85b5a088608 (plain)
1
2
3
4
5
6
7
8
9
10
<?php
	require_once("../config.php");
	$res= new PDO($mysql_server,$mysql_user,$mysql_pass);
	

   require("../../codebase/treegrid_connector.php");
   $tree = new TreeGridConnector($res, "PDO");
   
   $tree->render_sql("SELECT * from tasks WHERE complete>49","taskId","taskName,duration,complete","","parentId");
?>