j'ai besoin d'aide
j'ai fait le formulaire mais bien sur je l'ai modifier mais je ne vois pas ou est l'erreur dans cible.php
voici mon formulaire: (html)
Voici la page cible.php :
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
19
20
21
22
23 <form method="post" action="cible.php"> <p><font size="5">Passer une commande</font></p> <p>VOTRE PSEUDO : <input type="text" name="pseudo" value="Pseudo" onfocus="this.value='';"> <br />VOTRE E-MAIL : <input type="text" name="email" size="40" value="e-mail" onfocus="this.value='';"> <br />CODE DE SECURITE <b>562390</b> <input type="text" name="code" value="recopier les 6 chiffres" onfocus="this.value='';"> <br />OU VAS-TU UTILISER LA CREATION ? : <input type="text" name="ou" size="40" value="url" onfocus="this.value='';"> <br />TYPE DE CREATION : <SELECT name="fonction"> <OPTION VALUE="Avatar">Avatar</OPTION> <OPTION VALUE="Award">Award</OPTION> <OPTION VALUE="Bannière">Bannière</OPTION> <OPTION VALUE="Blend">Blend</OPTION> <OPTION VALUE="Bouton">Bouton</OPTION> <OPTION VALUE="Design forum">Design forum</OPTION> <OPTION VALUE="Horloge flash">Horloge Flash</OPTION> </SELECT> <br />TAILLE DE CREATION EN PIXEL : <input type="text" name="taille" value="taille" onfocus="this.value='';"> <font size="1"><b>( SI PAS DE PRECISION DE VOTRE PART, LA TAILLE SERA MISE PAR DEFAUT C'EST-A-DIRE COMME MOI JE MET GENERALEMENT )</b></font> <br />TEXTE A INDIQUER : <input type="text" name="texte" size="40" value="texte" onfocus="this.value='';"> <br />INSERER LES URLS DES IMAGES : <input type="text" name="img" size="100" value="Vos images" onfocus="this.value='';"> <br /><br /><textarea name="objet" cols="100" rows="8">Commentaire supplémentaire</textarea> <br /><br /> <input type="submit" name="envoyer" value="Envoyer"> </p> </form>
EXPLICATION
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
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33 <?php $pseudo=stripslashes(htmlspecialchars(htmlentities(trim($_POST['pseudo'])))); $texte=stripslashes(htmlspecialchars(htmlentities(trim($_POST['texte'])))); $objet=stripslashes(htmlspecialchars(htmlentities(trim($_POST['objet'])))); $email=stripslashes(htmlspecialchars(htmlentities(trim($_POST['email'])))); $img=htmlspecialchars(htmlentities(trim($_POST['img']))); $ou=htmlspecialchars(htmlentities(trim($_POST['ou']))); $code=htmlspecialchars(htmlentities(trim($_POST['code'])))); $taille=htmlspecialchars(htmlentities(trim($_POST['taille'])))); $space=" "; $espace=htmlspecialchars($space); $objet .=$espace; $objet .=$img; $objet .=$espace; $objet .=$email; $objet .=$espace; $objet .=$ou; $objet .=$espace; $objet .=$code; $objet .=$espace; $objet .=$taille; if ($objet == "" OR $pseudo == "" OR $email == "" OR $code == "") { echo "Veuillez remplir tout les champs (sauf l'image). Les espaces ne sont pas comptés."; } else { mail('angel@angelsjenifer.fr.tc', $sujet.',de '.$pseudo, $objet); echo "Le message a bien été envoyé"; } ?>
Alors j'ai fait mon formulaire mais le problème est que je ne sais pas déjà si le PHP est correcte et lorsque j'envoie le formulaire il me erreur (voir le lien si dessous)
et voici l'endroit où se trouve le formulaire http://angelsjenifer.e3b.org/graphisme/commander.html
merci d'avance pour l'aide que vous m'apporterez
Partager