Subversion Repositories eFlore/Applications.del

Rev

Rev 2012 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2012 Rev 2017
Line 1... Line -...
1
<h2>Pictoflora - Mots clés les plus fréquents</h2>
-
 
2
<?=(isset($annee) ? "<h4>Pour l'année " . $annee . "</h4>" : "")?>
-
 
3
1
<h2>Pictoflora - les <?php echo count($liste) ?> mots clés les plus fréquents</h2>
-
 
2
<?= isset($annee) ? "<h4>Pour l'année " . $annee . "</h4>" : "" ?>
-
 
3
<table class="table table-hover">
-
 
4
<thead>
-
 
5
	<tr>
-
 
6
		<th>Mot-clé</th>
-
 
7
		<th>Occurrences</th>
-
 
8
	</tr>
-
 
9
</thead>
-
 
10
<tbody>
-
 
11
	<?php foreach($liste as $mc): ?>
-
 
12
	<tr><td><?= $mc['tag'] ?></td><td><?= $mc['occurrences'] ?></td></tr>
-
 
13
	<?php endforeach; ?>
-
 
14
</tbody>
-
 
15
</table>
-
 
16
4
17