Rev 707 |
Details |
Compare with Previous |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
707 |
jpm |
1 |
<?php if (array_key_exists('taxon', $filtres) || array_key_exists('num_taxon', $filtres) || array_key_exists('tag', $filtres)) : ?>
|
|
|
2 |
<h2>Filtes actifs</h2>
|
|
|
3 |
<ul>
|
703 |
jpm |
4 |
<?php if (array_key_exists('taxon', $filtres)) : ?>
|
707 |
jpm |
5 |
<li>nom du taxon=<?=$filtres['taxon']?></li>
|
703 |
jpm |
6 |
<?php endif; ?>
|
|
|
7 |
<?php if (array_key_exists('num_taxon', $filtres)) : ?>
|
707 |
jpm |
8 |
<li>numéro du taxon=<?=$filtres['num_taxon']?></li>
|
703 |
jpm |
9 |
<?php endif; ?>
|
707 |
jpm |
10 |
<?php if (array_key_exists('tag', $filtres)) : ?>
|
|
|
11 |
<li>Mots-clés des images=<?=$filtres['tag']?></li>
|
|
|
12 |
<?php endif; ?>
|
|
|
13 |
</ul>
|
700 |
jpm |
14 |
<?php endif; ?>
|