Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 799 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1210 mathias 1
<!-- onglet "Tableau multilingue" -->
161 jpm 2
<? if ($noms) : ?>
788 mathilde 3
	<table>
4
		<tr>
5
			<th>n°</th>
6
			<th>langue</th>
7
			<th>nom commun</th>
8
			<th>nom latin</th>
9
		</tr>
799 mathilde 10
	 	<?  $i = 1; foreach ($noms as $id => $valeurs) : ?>
788 mathilde 11
			<tr>
12
				<td><?=$i++?></td>
13
				<td><?= $valeurs['langue']?></td>
14
				<td><?= $valeurs['nomVerna']?></td>
799 mathilde 15
				<td><a href="<?= $valeurs['urlFiche']?>"><?= $valeurs['nomSci']?></a></td>
788 mathilde 16
			</tr>
17
		<? endforeach; ?>
18
	</table>
19
<? endif; ?>