jde
2011-03-03 14:45:00 UTC
Bonjour,
Tout nouveau sur ce forum et en PHP, j'ai un souci de passage de
variables.
dans un fichier html de "contact", j'ai ce bout de code :
<form action="formmail3.php" method="post" style="margin-bottom: 0;">
<table width="350" border="1" cellspacing="2" cellpadding="1">
<tr>
<tr>
<td>Nom</td>
<td><input name="nom" type="text" size="35"></td>
</tr>
<tr>
<td>Prénom</td>
<td><input type="text" name="prenom"></td>
</tr>
<tr>
<td>E-Mail</td>
<td><input type="text" name="email"></td>
</tr>
etc...
<td>
<input type="reset" name="Effacer" id="Effacer" value="Effacer">
<input type="submit" name="Envoyer" id="Envoyer"
value="Envoyer"></td>
</tr>
</table>
</form>
et un fichier formmail3.php comme ça
<?php
$TO = "***@mail.fr";
$h = "From: Fiche contact P+ <> \n";
$h .= "Reply-to: $email \n\n";
$mess = "Nom : $nom\n";
$mess .= "Prenom : $prenom\n";
$sujet = "questionnaire contact";
mail($TO, $sujet, $mess, $h);
?>
Le mail part parfaitement bien, je le reçois correctement, mais aucune
variable de la fiche contact n'est récupérée par le script (enfin...
aucune variable n'est transmise dans le mail).
J'ai loupé un truc, surement, mais lequel ?
(ça se voit que je débute ? ;-) )
Merci d'avance
Tout nouveau sur ce forum et en PHP, j'ai un souci de passage de
variables.
dans un fichier html de "contact", j'ai ce bout de code :
<form action="formmail3.php" method="post" style="margin-bottom: 0;">
<table width="350" border="1" cellspacing="2" cellpadding="1">
<tr>
<tr>
<td>Nom</td>
<td><input name="nom" type="text" size="35"></td>
</tr>
<tr>
<td>Prénom</td>
<td><input type="text" name="prenom"></td>
</tr>
<tr>
<td>E-Mail</td>
<td><input type="text" name="email"></td>
</tr>
etc...
<td>
<input type="reset" name="Effacer" id="Effacer" value="Effacer">
<input type="submit" name="Envoyer" id="Envoyer"
value="Envoyer"></td>
</tr>
</table>
</form>
et un fichier formmail3.php comme ça
<?php
$TO = "***@mail.fr";
$h = "From: Fiche contact P+ <> \n";
$h .= "Reply-to: $email \n\n";
$mess = "Nom : $nom\n";
$mess .= "Prenom : $prenom\n";
$sujet = "questionnaire contact";
mail($TO, $sujet, $mess, $h);
?>
Le mail part parfaitement bien, je le reçois correctement, mais aucune
variable de la fiche contact n'est récupérée par le script (enfin...
aucune variable n'est transmise dans le mail).
J'ai loupé un truc, surement, mais lequel ?
(ça se voit que je débute ? ;-) )
Merci d'avance
--
--
rédigé sur un spam 100% recyclé
--
rédigé sur un spam 100% recyclé