Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 799 | Details | Compare with Previous | Last modification | View Log | RSS feed

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