Subversion Repositories eFlore/Applications.del

Rev

Rev 2015 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2015 Rev 2017
Line 1... Line 1...
1
<h2>Identiplante - les <?= count($liste) ?> utilisateurs ayant fait le plus de votes positifs</h2>
1
<h2>Identiplante - les <?= count($liste) ?> utilisateurs ayant fait le plus de votes positifs</h2>
2
<?=(isset($annee) ? "<h4>Pour l'année " . $annee . "</h4>" : "")?>
2
<?=(isset($annee) ? "<h4>Pour l'année " . $annee . "</h4>" : "")?>
3
<?php
-
 
4
	foreach ($liste as $u) {
-
 
5
		print_r($u);
-
 
6
		echo "<br/><br/>";
-
 
7
	}
-
 
8
?>
-
 
9
3
<table class="table table-hover">
-
 
4
<thead>
-
 
5
	<tr>
-
 
6
		<th>Contributeur</th>
-
 
7
		<th>Nombre de propositions</th>
-
 
8
	</tr>
-
 
9
</thead>
-
 
10
<tbody>
-
 
11
	<?php foreach($liste as $util): ?>
-
 
12
	<tr><td><?= $util['courriel'] ?></td><td><?= $util['nombre'] ?></td></tr>
-
 
13
	<?php endforeach; ?>
-
 
14
</tbody>
-
 
15
</table>
-
 
16
10
17