add new function for creating a table from an SQL

This commit is contained in:
Dany De Bontridder 2011-05-14 00:36:59 +00:00
parent b7363dd17b
commit 22d03398ee
2 changed files with 43 additions and 1 deletions

View file

@ -74,7 +74,8 @@ $array=array(
array(32,'Acc_Operation & children'),
array(33,'Ledger : reverse op'),
array(34,'Reconciliation'),
array(35,'Bilan')
array(35,'Bilan'),
array(36,'SQL2Table')
);
$r='<form method="get">';
$r.='<select name="test_select" >';
@ -298,6 +299,10 @@ case 35:
require_once('class_acc_bilan.php');
Acc_Bilan::test_me();
break;
case 36:
require_once('class_html_table.php');
Html_Table::test_me();
break;
}