Hi All,
I have a flash form sending data to a PHP script, the data is posting (I can see it via firebug) but I’m not getting any response. Is there something wrong with my code:
<?php
$destinationAdress="myEmail@myEmail.com";
$nowDay=date("m.d.Y");
$nowTime=date("H:i:s");
$complete_name = $_POST['complete_name'];
$city = $_POST['city'];
$email = $_POST['email'];
$event_field = $_POST['event_field'];
$eventDay = $_POST['eventDay'];
$numGuests = $_POST['numGuests'];
$comments_area = $_POST['comments_area'];
$FormContent="Message date = $nowDay at $nowTime
----------------------------------------------------------------------------
From: $complete_name
City / Zip: $city
Email: $email
Event: $event_field
Event Day: $eventDay
Number of Guests: $numGuests
----------------------------------------------------------------------------
Message: $comments_area";
mail($destinationAdress, "$subject [ My Name Submission From $complete_name ]", $FormContent, "From: $email");
?>
I’ve been trying a number of different things for the past few hours, and nothing seems to work. Someone pleeeeease help.