summaryrefslogtreecommitdiffstats
path: root/samples/export/excel.php
blob: 6c0f3f8f05953afade525d56744eed2f4a346c2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
	require_once("../config.php");
	require_once('../../codebase/db_pdo.php');
	$res= new PDO($mysql_server,$mysql_user,$mysql_pass);
	
	

	require("../../codebase/grid_connector.php");
	require("../../codebase/convert.php");
	
	$convert = new ConvertService("http://dhtmlxgrid.appspot.com/export/excel");
	$convert->excel();
	
	$grid = new GridConnector($res, "PDO");
	$config = new GridConfiguration();
	
	$grid = new GridConnector($res, "PDO");
	$grid->set_config($config);
	$grid->render_table("grid50");
?>