<?php
$TO = "fleurlina@hotmail.com";

$h  = "From: " . $TO;

$message = "";

while (list($key, $val) = each($HTTP_POST_VARS)) {
  $message .= "$key : $val\n";
}

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

Header("Location: http://www.cuisine-saveur-monde.fr/reservation.php");

?>