Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 704 Rev 707
Line 1... Line 1...
1
<?php if (array_key_exists('taxon', $filtres) || array_key_exists('num_taxon', $filtres)) : ?>
1
<?php if (array_key_exists('taxon', $filtres) || array_key_exists('num_taxon', $filtres) || array_key_exists('tag', $filtres)) : ?>
2
	<p>Filtes actifs : 
2
	<h2>Filtes actifs</h2>
-
 
3
	<ul> 
3
	<?php if (array_key_exists('taxon', $filtres)) : ?>
4
	<?php if (array_key_exists('taxon', $filtres)) : ?>
4
		nom du taxon=<?=$filtres['taxon']?>
5
		<li>nom du taxon=<?=$filtres['taxon']?></li>
5
	<?php endif; ?>
6
	<?php endif; ?>
6
	<?php if (array_key_exists('num_taxon', $filtres)) : ?>
7
	<?php if (array_key_exists('num_taxon', $filtres)) : ?>
7
		numéro du taxon=<?=$filtres['num_taxon']?>
8
		<li>numéro du taxon=<?=$filtres['num_taxon']?></li>
8
	<?php endif; ?>
9
	<?php endif; ?>
-
 
10
	<?php if (array_key_exists('tag', $filtres)) : ?>
-
 
11
		<li>Mots-clés des images=<?=$filtres['tag']?></li>
-
 
12
	<?php endif; ?>
9
	</p>
13
	</ul>
10
<?php endif; ?>
14
<?php endif; ?>
11
15