Ejemplo n.º 1
0
                <div class="box-header with-border">
                  <h3 class="box-title">Liste Gatégorie</h3>
                </div><!-- /.box-header -->
                <div class="box-body table-responsive no-padding">
                  <table class="table table-hover">
                    <tr>
                      <th>N°</th>
                      <th>Libelle</th>  
                      <th>Lien Modifier </th>  
                      <th>Lien Supprimer</th>                          
                    </tr>
                   
                       <?php 
include "../model/Connection.php";
include "../model/Categorie.php";
$retour = Categorie::lister_categorie($bd);
$i = 0;
foreach ($retour as $donnees) {
    $i++;
    $idf = $donnees['libelle'];
    $id = $donnees['id'];
    ?>
						
						 <tr>
						<td><?php 
    echo $i;
    ?>
</td>
						<td><?php 
    echo $idf;
    ?>