Probleme variable isset PHP
Bonsoir,
j'ai un formulaire :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
<form enctype="multipart/form-data" action="administration.php" name="form_video" method="post" style=" padding-left:50px;">
<input type="hidden" name="posted_video" value="1" />
<b style="padding-bottom:3px">Chemin de la video : </b>
<input id="style_ligne_form" type="file" name="video" size="34" maxlength="60" style="background-color:#C5E878"><br />
<div style="margin-left:20px;">
<b style="padding-bottom:3px">Titre de la video : </b>
<input id="style_ligne_form" type="text" name="titre_video"/>
</div>
<br />
<div style="padding-bottom:3px; margin-left:200px;"><input name="ajouter_video" type="submit" value="Ajouter Video" /></div><br/>
</form> |
et un script qui devrait se déclencher a l'envoi du formulaire mais rien a faire !!! Alors que j'ai deja 3 formulaires qui fonctionnent de la meme maniere sur mon site
Voici le départ du script qui semble ne pas marcher :
Code:
1 2 3
|
if ( isset($_POST['posted_video']))
... |
Est que quelqu'un peut m'aider !?