Bonjour
Voila j’ai crée un formulaire pour un jeu dont voila le code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
<head>
<title>Systéme d'alerte CODIS version 1.0 !</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" media="screen" type="text/css" title="essai" href="essai.css" />
</head>
<center>
<img src=http://img177.imageshack.us/img177/3743/banierecodisxr4.jpg/>
</center></div>
<body><center><table><thead><tr>
<td>Caserne</td>
<td>Gestion intervention</t>
</tr></thead>
<tr> <td>CCPI Centre ville</td>
<td> <fieldset>
<legend>Feuille départ</legend>
<form method="post" action="traitement.php"> <p>
<label for="pays">Véhicules</label><br />
<input type="checkbox" name="VV" /> VLHR
<input type="checkbox" name="VV" /> VLIHR
<input type="checkbox" name="VV" /> VSABHR
<input type="checkbox" name="VV" /> VLDHR </p>
<label for="prenom">Nature de l'intervention</label><br />
<input type="text" name="nature" id="prenom" tabindex="50" /><br />
<label for="email">Autres informations</label><br />
<input type="text" name="info" id="email" tabindex="50" /><br />
</fieldset></a>
<input type="submit"value="Départ" /> <input type="reset" /></form></tr>
</body></center>
</html>
Le formulaire ne changera pas par contre je veux l’envoyé sur un mail mais je n’y arrive pas malgrés les tutos et les autres personnes dans un cas similaires
Voici le code
<?php
$objet=$_POST['objet'];
$message=$_POST['message'];
/////voici la version Mine
$headers = "MIME-Version: 1.0\r\n";
//////ici on détermine le mail en format text
$headers .= "Content-type: text/plain; charset=iso-8859-1\r\n";
////ici on détermine l'expediteur et l'adresse de réponse
$headers .= "From: yann@hotmail.fr\r\nReply-to : CODIS <yann@hotmail.fr>\nX-Mailer:PHP";
$subject="Depart intervention";
$destinataire="yann@club-internet.fr";
$body="Depart pour intervention";
$nom=$_POST['nature'];
$nom=$_POST['VV'];
$nom=$_POST['info'];
if (mail($destinataire,$subject,$body,$headers)) {
echo "Alerte envoyé";
} else {
echo "Une erreur s'est produite";
}
?>
Pouvez me dire d’ou viens mon erreur, et me dire ce que je doit modifier pour avoir toutes les données dans le mail.
Merci d’avance