Form bouton parcourir s affiche pas sur ie

jupiler -  
 le père -
Bonjour,

j ai un formulaire qui me permet d'uploader un fichier mon souci est que le bouton parcourir s'affiche nickel sur Firefox mais sur ie 7 et 8

Merci de votre aide :

echo '<center><form method="POST" action="import.php" enctype="multipart/form-data">';
echo '<table class="table_joindre">'."\n";
echo '<tr>';
echo '<td><input type="hidden" name="MAX_FILE_SIZE" value="100000000000"></td>';
echo '</tr>';
echo '<tr>';
echo '<td class="td_joindre">Joindre l\'image format paysage:</td>' ;
echo '<td><input "type="file" name="fichier" ></td>' ;
echo '</tr>'."\n";
echo '<tr>';
echo '<td>Description de l\'image :</td>';
echo '<td><textarea rows="5" COLS="20" name="comment"></textarea></td>';
echo '</tr>'."\n";
echo '</table>'."\n";
echo '<br /><br /><center><input type="submit" name="ok" value="Import"/></center>';
echo '</form></center>';

1 réponse

le père
 
Bonjour

il ne faut pas de " avant type dans :
echo '<td><input type="file" name="fichier" ></td>' ;
0