示例#1
0
                  <h3 class="box-title">Liste des produits</h3>
                </div><!-- /.box-header -->
                <div class="box-body">
                  <table id="example1" class="table table-bordered table-striped">
                    <thead>
                      <tr>
                        <th>Numero</th>
                        <th>Reference</th>
                        <th>Nom</th>
                        <th>Prix</th>
                        <th>Marque</th>
                      </tr>
                    </thead>
                    <tbody>
                    <?php 
afficheTab($data);
?>
                    </tbody>
                    <tfoot>
                      <tr>
                        <th>Numero</th>
                        <th>Reference</th>
                        <th>Nom</th>
                        <th>Prix</th>
                        <th>Marque</th>
                      </tr>
                    </tfoot>
                  </table>
                </div><!-- /.box-body -->
              </div><!-- /.box -->
            </div><!-- /.col -->
示例#2
0
<html>
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <title>Gestion des annonces</title>
    <link rel="stylesheet" type="text/css" href="style.css">
    <script type="text/javascript" src="sorttable.js"></script>
</head>
<body>
<header>
    <p class="titre">Gestion annonces</p>
</header>


<?php 
recupAnnonces();
afficheTab();
?>
<br>
<br>
<p class="credits">Sloan Fardèle | IUT Bourg en Bresse | 2e année | Exercice pour le stage @SanteVet</p>
</body>
</html>