Subversion Repositories eFlore/Applications.del

Rev

Rev 2017 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<h2>Pictoflora - les <?php echo count($liste) ?> mots clés les plus fréquents</h2>
<?= isset($annee) ? "<h4>Pour l'année " . $annee . "</h4>" : "" ?>
<table class="table table-hover">
<thead>
        <tr>
                <th>Mot-clé</th>
                <th>Occurrences</th>
        </tr>
</thead>
<tbody>
        <?php foreach($liste as $mc): ?>
        <tr><td><?= $mc['tag'] ?></td><td><?= $mc['occurrences'] ?></td></tr>
        <?php endforeach; ?>
</tbody>
</table>