adhesionShowAllSuccess.php 486 B

12345678910111213141516171819202122
  1. <div class="content-add01">
  2. <div class="heading01"><h1>Vue d'ensemble des adhésions</h1></div>
  3. </div>
  4. <table class="admin-list">
  5. <thead>
  6. <tr>
  7. <th>Année</th>
  8. <th>Cotisations</th>
  9. <th>Nombre d'adhérents</th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. <?php foreach($adhesion_list as $al): ?>
  14. <tr>
  15. <td><?php echo $al['year'] ?> </td>
  16. <td><?php echo $al['amount'] ?></td>
  17. <td><?php echo $al['cnt'] ?></td>
  18. </tr>
  19. <?php endforeach ?>
  20. </tbody>
  21. </table>