summaryrefslogtreecommitdiffstats
path: root/samples/combo/01_basic_connector.php
blob: 847c9dfd2330b7da11f856f78aea0ff9d94823a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
	require_once("../config.php");
	
	$res= new PDO($mysql_server,$mysql_user,$mysql_pass);
	

   require("../../codebase/combo_connector.php");
   $combo = new ComboConnector($res, "PDO");
//   $combo->enable_log("temp.log");
   $combo->render_table("country_data","country_id","name");
?>