Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

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