Subversion Repositories Sites.tela-botanica.org

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
300 jpm 1
<!-- STAT_DISTRIBUTION : tableau - DEBUT -->
2
<h1><?=$titre;?></h1>
3
<?php if ($erreur) : ?>
4
 
5
<p class="pap_erreur"><?=$erreur;?></p>
6
 
7
<?php elseif ($information) : ?>
8
 
9
<p class="zone_info"><?=$information;?></p>
10
 
11
<?php else : ?>
12
 
13
<table class="table_cadre">
14
	<tr>
15
		<th class="">Pays</th>
16
		<th class="">Nombre d'inscrits</td>
17
		<th class="">Pourcentage</td>
18
	</tr>
19
<?php foreach ($tab_donnees as $donnee) : ?>
20
	<tr>
21
		<th class=""><?=$donnee['libelle'];?></th>
22
		<td class=""><?=$donnee['nombre'];?></td>
23
		<td class=""><?=$donnee['pourcentage'];?></td>
24
	</tr>
25
<?php endforeach; ?>
26
</table>
27
<?php endif; ?>
28
<!-- STAT_DISTRIBUTION : tableau - FIN -->