Formulaire de contact php et xml

Fermé
karslim - 16 sept. 2009 à 09:56
 Profil bloqué - 16 sept. 2009 à 23:20
Bonjour,
J 'aurais vraiment besoin qu'une personne puisse m'aider à résoudre mon problème de formulaire php
ci dessous:
<?

//name = input0
//email = input1
//comments = input2


$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: User Name Goes here' . "\r\n" .'Reply-To: demo@demo.com Goes here' . "\r\n";



$ToEmail = "demo@demo.com";

$ToName = "To Name Goes here";
$ToSubject = "Subject Goes here";

$EmailBody = "<table width='716' height='207' border='1' bgcolor='#090909'>
<tr>
<td><font size='2' face='Arial' color='#999999'>Sent By: $input0 \nSenders Email: $input1\n Message Sent:\n$input2</font></td>
</tr>
</table>";

$EmailFooter="\n©2007 Company Name 2007.";

$Message = $EmailBody.$EmailFooter;

mail($ToName." <".$ToEmail.">",$ToSubject, $Message, $headers);


Print "_root.Status=success";

?>

Je ne sais quoi mais surtout où remplir mes infos pour que les mail arrivent bien à destination.
C'est un formulaire qui sera chargé via un fichier xml et celui-ci chargera aussi un fichier swf.

merci beaucoup
A voir également:

1 réponse

Profil bloqué
16 sept. 2009 à 23:20
<?php
$TO = "demo@demo.com";

$h = "De: " . $TO;

$message = "";

while (list($key, $val) = each($HTTP_POST_VARS))

{
$message .= "$key : $val\n";
}

mail($TO, $subject, $message, $h);

Header("Location: mess.php");//redirection apres envoie

?>
_______________________________
envoie.php


essai ce code avec dans la page d'envoie (contact.php ou autre) la balise form avec comme action envoie.php...
0