Go to the documentation of this file.00001 <?php
00002
00003
00004
00005 if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
00006 require_once ('class_anc_balance_double.php');
00007 $bc = new Anc_Balance_Double($cn);
00008 $bc->get_request();
00009 echo '<form method="get">';
00010 echo $bc->display_form();
00011 echo '</form>';
00012 if (isset($_GET['result']))
00013 {
00014 $result=$bc->display_html();
00015 if ($bc->has_data > 0)
00016 {
00017 echo $bc->show_button();
00018 echo $result;
00019 }
00020 else
00021 {
00022 echo '<p class="notice">';
00023 echo _('Aucune donnée trouvée');
00024 echo '</p>';
00025 }
00026
00027 }
00028 ?>