Hello
I've this form (and it works) on my page :
My problem is with the line :HTML Code:<form enctype="multipart/form-data" action="gesChants.php" method="post"> <!-- Création --> <fieldset><legend>Insertion d'un nouveau chant</legend> <input type="hidden" name="MAX_FILE_SIZE" value="200000" /> Nom du fichier partition : <br /><input type="file" name="fileNameAIns" id="fileNameAIns" maxlength="25" size="35" style="background-color:#ccffcc" value="<?php echo $coteClassementAIns.'.MUS'; ?>" /><br /> Côte du chant :<br /><input type="text" name="coteAIns" maxlength="20" style="background-color:#ccffcc" value="<?php echo $coteClassementAIns; ?>" /><br /> <input type="radio" name="typeCote" value="CR" checked="checked" />Côte réelle (pour un chant côté)<br /> <input type="radio" name="typeCote" value="CC" />Côte de classement (pour un chant sans côte)<br /> Titre du chant :<br /><input type="text" name="titreAIns" id="titreAIns" maxlength="50" size="50" style="background-color:#ccffcc" value="<?php echo $titreAIns; ?>" /><br /> Auteur(s) :<br /><input type="text" name="auteurAIns" maxlength="35" size="35" value="<?php echo $auteurAIns; ?>" /><br /> Compositeur(s)) :<br /><input type="text" name="compositeurAIns" maxlength="35" size="35" value="<?php echo $compositeurAIns; ?>" /><br /> Livret papier :<br /><input type="text" name="livretAIns" maxlength="2" style="background-color:#ccffcc" value="<?php echo $livretAIns; ?>" /><br /> <input type="submit" name="creation" value="Téléverser & créer"/> </fieldset> </form>
because the "search on hard drive" button (i.e. "Parcourir") is just on the right of the "input" field for the file name.HTML Code:Nom du fichier partition : <br /><input type="file" name="fileNameAIns" id="fileNameAIns" maxlength="25" size="35" style="background-color:#ccffcc" value="<?php echo $coteClassementAIns.'.MUS'; ?>" />
I'd like it would be just after "Nom du fichier partition : " in order not to make a field too long !
How can I drive that ?
I have tried with a "button" instead of "input" but it doesn't work!
Thanks for your answers


LinkBack URL
About LinkBacks
Reply With Quote
