summaryrefslogtreecommitdiffstats
path: root/samples/grid/xx_sample_pdo_connector.php
blob: eed2f3cc99e9261ff6d0f7f4174b96102d1c2fcd (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
	require_once("../config.php");
	$dbh = new PDO('mysql:host='.$mysql_server.';dbname='.$mysql_db, $mysql_user, $mysql_pass);
	
	require("../../codebase/grid_connector.php");
	
	$grid = new GridConnector($dbh,"PDO");
	
	$grid->dynamic_loading(100);
	$grid->render_table("grid50000","item_id","item_nm,item_cd");
?>