summaryrefslogtreecommitdiffstats
path: root/samples/export/excel.php
blob: 5421bec9801efe7a78e853e60e6e81da4f370afd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
	require_once("../config.php");
	$res=mysql_connect($mysql_server,$mysql_user,$mysql_pass);
	mysql_select_db($mysql_db);
	

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