0000241: Modularité : ajout impression compta anc

This commit is contained in:
Dany De Bontridder 2011-11-17 11:41:37 +00:00
parent f49b43bb2b
commit ffb5eaa7f9
15 changed files with 142 additions and 196 deletions

View file

@ -0,0 +1,16 @@
<?php
require_once('class_anc_table.php');
$tab = new Anc_Table($cn);
$tab->get_request();
echo '<form method="get">';
echo $tab->display_form();
echo '<p>' . HtmlInput::submit('Recherche', 'Recherche') . '</p>';
echo '</form>';
if (isset($_GET['result']))
{
echo $tab->show_button();
$tab->display_html();
}
?>