altocompta/include/anc_acc_table.inc.php
Dany De Bontridder 8f265c7bbc Use a variable for an absolute path for performance reason
NOALYSS_INCLUDE
NOALYSS_HOME
NOALYSS_PLUGIN
2015-08-11 11:05:54 +02:00

19 lines
479 B
PHP

<?php
//This file is part of NOALYSS and is under GPL
//see licence.txt
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/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();
}
?>