Bonjour
j'aimerais qu'au survol de mon menu déroulant l'image correspondante s'affiche
pouvez vous m'aider
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 
<select size=2 id="imgLstDos" >
<?php   /*
 afficher les images du dossier 
                         */     
 
 $rep=opendir('../Dossiers/'.$_GET['Dossier'].'/Images/');
 
while ($fichier = readdir($rep))
{
    if( $fichier != '..' && $fichier !='.' )
        {
                echo '<option>'.substr($fichier,0).'</option>';
         }
 }
                                                
?>
</select>
Pouvez vous m'aider
Merci