Bonjour.
Pour ceux que ça intéresse faite un copier/coller.
Formulaire de réponse tout simple.
Fichier "formulaire.htm"
<body bgcolor="#FFF1EA">
<table width="400">
<tr><td>
<form method="post" action="reponse.php">
<fieldset>
<legend> Inscription </legend>
<table width="400">
<tr>
<td align="right">Choisissez un Pseudo :</td>
<td width="50%"><input name="pseudo" type="text"></td>
</tr>
<tr>
<td align="right">Votre mot de passe :</td>
<td><input name="passe" type="text"></td>
</tr>
<tr>
<td align="right">Votre adresse mail :</td>
<td><input name="mail" type="text"></td>
</tr>
</table>
</fieldset>
<fieldset>
<legend>Comment trouvez vous se site ? </legend>
<table width="400" >
<tr>
<td colspan="2" align="center">Trés bien <input type="radio" name="1"1 value="Trés bien">
Bien <input type="radio" name="1"2 value="Bien"> Moyen
<input type="radio" name="1"3 value="Moyen"> Nul <input type="radio" name="1"4 value="Nul">
Autre <input type="radio" name="1"5 value="Autre"></td>
</tr>
<tr>
<td colspan="2" align="center">Si "Autre" précisez !</td>
</tr>
<tr>
<td colspan="2" align="center"><textarea name="autre" cols="45" rows="2" wrap="VIRTUAL"></textarea></td>
</tr>
<tr>
<td width="223" align="center"><input name="submit" type="submit" value="Envoyer"></td>
<td width="207" align="center"><input name="reset" type="reset" value="Effacer"></td>
</tr>
</table></fieldset>
</form>
</td>
</tr>
</table>
</body>
Fichier "reponse.php" (n'oublier pas de mettre votre adresse mail à la place de "votreadressemailici@cegetel.net")
<body bgcolor="#FFF1EA">
<?php
mail("votreadressemailicid@cegetel.net","Formulaire de reponse",
"Formulaire de reponse:\n
Choisissez un pseudo : ".$_POST['pseudo']."
Votre mot de passe : ".$_POST['passe']."
Votre adresse mail : ".$_POST['mail']."
Comment trouvez vous se site ? : ".$_POST['1']."
----------- AUTRE DEMANDE -----------
".Stripslashes($_POST['autre'])."
--------------------------------------");
?>
<table width="37%" height="245" border="1">
<tr>
<td align="center"><p><font color="#0000FF" size="4" face="Georgia, Times New Roman, Times, serif">Machin
truc </font></p>
<p><font color="#0000FF" size="4" face="Georgia, Times New Roman, Times, serif">vous contacteras prochainement.</font></p></td>
</tr>
</table>
</body>