problème envoi formulaire sur mail?

problème envoi formulaire sur mail? - PHP - Programmation

Marsh Posté le 08-08-2004 à 09:10:33    

Bjr,
J'ai deux scripts PHP mais rien n'est envoyé sur mon mail,mes cripts sont-ils bn ou bien je dois changer de serveur FTP?
 
formulaire.php
 

Code :
  1. </head> <body bgcolor="#99CCFF"><form name="formulaire" method="post" action="envoi.php" onSubmit="return verif2(this.mail.value)">
  2.   <table align="center" width="80%" height="318" border="1">
  3.     <tr>
  4.       <td><table width="100%" height="305" border="0" bordercolor="#FF0000">
  5.           <tr>
  6.             <td height="49" colspan="4"><div align="center"><font color="red"><strong><em><u>ENTREZ
  7.                 VOSINFORMATIONSCI-DESSOUS:</u></em></strong></font></div></td>
  8.           </tr>
  9.           <tr>
  10.             <td colspan="2"><div align="right"><b>Nom :</b> <font color="#FF0000">*</font></div></td>
  11.             <td colspan="2"><input type="text" name="nom"></td>
  12.           </tr>
  13.           <tr>
  14.             <td colspan="2"><div align="right"><b>Prénom :</b> <font color="#FF0000">*</font></div></td>
  15.             <td colspan="2"><input type="text" name="prenom"></td>
  16.           </tr>
  17.           <tr>
  18.             <td colspan="2"><div align="right"><b>Email :</b> <font color="#FF0000">*</font></div></td>
  19.             <td colspan="2"><input name="mail" type="text" size="40"></td>
  20.           </tr>
  21.           <tr>
  22.             <td colspan="2"><div align="right"><b>Url de vos photos :</b> <font color="#FF0000">*</font></div></td>
  23.             <td colspan="2"><input name="url" type="text" size="40"></td>
  24.           </tr>
  25.           <tr>
  26.             <td colspan="4"><div align="center"><font color="#FF0000">* <font color="#000000" size="1" face="Arial, Helvetica, sans-serif">A
  27.                 completer pour envoyer !</font></font></div></td>
  28.           </tr>
  29.           <tr>
  30.             <td width="14%"><div align="center"> </div></td>
  31.             <td colspan="2"><hr></td>
  32.             <td width="12%"></td>
  33.           </tr>
  34.           <tr valign="bottom">
  35.             <td height="37" colspan="2"><div align="right"><b>Age :</b></div></td>
  36.             <td colspan="2"><b>18-25
  37.              <input type="radio" name="1" 1 value="18-25"> &nbsp; 25-35
  38.              <input type="radio" name="1" 2 value="25-35"> &nbsp; +35
  39.              <input type="radio" name="1" 3 value="+35"></b></td>
  40.           </tr>
  41.           <tr>
  42.             <td colspan="2"><div align="right"><b>Je suis : </b></div></td>
  43.             <td colspan="2"><b>amateur :
  44.               <input type="radio" name="2" 1 value="amateur">semi-professionnel
  45.               :
  46.               <input type="radio" name="2" 2 value="semi-professionnel"></b></td>
  47.           </tr>
  48.           <tr>
  49.             <td colspan="2"><div align="right"><b>J'accepte des scènes ( </b><A
  50. onclick="window.open('note.html','Info','resizable=no, toolbar=no, location=no, status=no, menubar=no, width=750, height=300');return(false)"
  51. href="note.html"><b>note</b></A><b>
  52.                 ) :</b></div></td>
  53.             <td colspan="2"><b>solo :
  54.               <input type="radio" name="3" 1 value="solo">avec 1 partenaire
  55.               :
  56.               <input type="radio" name="3" 2 value="avec 1 partenaire">groupe
  57.               :
  58.               <input type="radio" name="3" 3 value="groupe"></b></td>
  59.           </tr>
  60.           <tr>
  61.             <td width="14%"><div align="center"> </div></td>
  62.             <td colspan="2"><hr></td>
  63.             <td width="12%">&nbsp;</td>
  64.           </tr>
  65.           <tr valign="middle">
  66.             <td height="50" colspan="4"> <div align="center">
  67.                 <input type="reset" name="Submit2" value="Effacer">
  68.                 <input type="submit" name="Submit" value="Envoyer">
  69.               </div></td>
  70.           </tr>
  71.         </table></td>
  72.     </tr>
  73.   </table>
  74. </form>
  75. </body>
  76. </html>


 
Envoi.php

Code :
  1. <table width="41%" height="140" border="1">
  2.     <tr>
  3.       <td><div align="center">
  4.           <p><b>VOS INFORMATIONS <br>
  5.             <br>
  6.             ONT BIEN ETE ENVOYEES.</b> </p>
  7.           <p><b>Merci.</b></p>
  8.         </div></td>
  9.     </tr>
  10.   </table>
  11. <?php
  12. mail("kapitolprod@netcourrier.com","Formulaire de reponse",
  13. "Formulaire de reponse:\n
  14. Nom : ".$_POST['nom']."
  15. Prenom : ".$_POST['prenom']."
  16. Mail : ".$_POST['mail']."
  17. Url : ".$_POST['url']."\n
  18. Age :  ".$_POST['1']."
  19. Je suis :  ".$_POST['2']."
  20. J'accepte des scenes :  ".$_POST['3']."
  21. " );
  22. ?>
  23. </div>


 

Reply

Marsh Posté le 08-08-2004 à 09:10:33   

Reply

Marsh Posté le 08-08-2004 à 09:13:00    

A vu d'oeil ton script à l'air correct.
Essaye de voir chez ton hebergeur si la fonction mail est activée ou si elle n'est pas substitué par une autre.


Message édité par shade93 le 08-08-2004 à 09:13:12

---------------
"I choose a lazy person to do a hard job. Because a lazy person will find an easy way to do it" B. Gates
Reply

Marsh Posté le 08-08-2004 à 09:19:22    

Ouille je sais pas trop comment savoir à moins de leur adresser un mail?
Par contre j'ai ouvert un compte chez Multimania,tu penses que je peux diriger mes réponses vers Multimania et comment faire,j'suis un peu newbie?
@+
 :??:

Reply

Marsh Posté le 08-08-2004 à 10:46:32    

shade93 a écrit :

A vu d'oeil ton script à l'air correct.
Essaye de voir chez ton hebergeur si la fonction mail est activée ou si elle n'est pas substitué par une autre.


 
ok prob résolu je suis passé chez Multimania pour l'envoi de formulaire en effet Maisonx ne prends pas en compte cette fonction visiblement
@+
 :)


Message édité par kid75 le 08-08-2004 à 10:46:52
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed