altocompta/include/anc_history.inc.php
2014-01-19 20:30:01 +01:00

26 lines
548 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 ('class_anc_listing.php');
$list = new Anc_Listing($cn);
$list->get_request();
echo $list->display_form();
//---- result
if (isset($_GET['result']))
{
echo '<div class="content">';
//--------------------------------
// export Buttons
//---------------------------------
echo $list->show_button();
echo $list->display_html();
echo '</div>';
}
echo '</div>';
?>