Bonjour !
J'ai un formulaire réalisé ainsi :
Code :
- <form action="./modules/commun/add_content.php" method="POST" target="_blank" enctype="multipart/form-data">
- <li style="margin-left:25px;">Ajouter un MP3</li><br />
- <table border="0" width="450" style="margin-left:30px;">
- <tr>
- <td class="table_in" height="20" width="200"><p> Artiste :</p></td>
- <td class="table_in" height="20" width="250" align="center"><select onchange="Ajax_Select(this,this.form.select_album_id,'admin_album_id')" name="select_artist_id" class="select" style="width:100%;">
- <?php
- foreach($mp3ArtistList['options'] As $Content=>$Display)
- echo "<option value=\"".$Content."\">".$Display."</option>\n" ;
- ?>
- </select></td>
- </tr>
- <tr>
- <td class="table_in" height="20" width="200"><p> Album :</p></td>
- <td class="table_in" height="20" width="250"><select disabled name="select_album_id" class="select" style="width:100%">
- <option value="NONE">-- Liste des albums --</option>
- </select></td>
- </tr>
- <tr>
- <td class="table_in" height="20" width="200"><p> Titre du morceau :</p></td>
- <td class="table_in" height="20" width="250" align="center"><input type="text" class="text" style="width:100%" name="select_mp3_title"></td>
- </tr>
- <tr>
- <td class="table_in" height="20" width="200"><p> Fichier MP3 :</p></td>
- <td class="table_in" height="20" width="250"><input type="file" class="text" style="width:220px;" name="select_mp3_file"></td>
- </tr>
- <tr>
- <td height="20" width="200"></td>
- <td class="table_in" height="20" width="250" align="center"><input type="submit" value="ok"></td>
- </tr>
- </table>
|
Ya un peu de PHP mais ce n'est pas important. Le truc c'est que mon fichier ne transmet pas le POSTDATA !! Alors que si j'enleve l'enctype ( ce qui empeche donc l'upload ) ca passe bien ce qui , exclue le possibilité d'une erreur dans le code.
Je ne sais pas ce qui ce passe mais c'est ennuyeux... Une solution ou une idée du problème ?
Message édité par the_bigboo le 22-07-2006 à 22:38:24