Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

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