PHP & Flash MX mail form trouble

hmmm it still isn’t sending all the info… any advice??

Peace

what information isn’t it sending and what is your code? It does send the e-mail tho right? Thats the important part…

it sends an email to the specified address… but only includes the information entered in 2 fields (and there are a lot more)… as this is a “request for order form” all order info needs to be sent as well - see what I mean. I’ve been looking at it, but dont have anything yet… let me know if you have any ideas. Thanks for your help!

Peace

I guess the part that is confusing me is the second part of the code:

$message = "Order Request From $name <$email> 
";
$message .= $address . "
" . $city . " 
 " . $rentalDate;
$message .= "
Jump Type: $jumpType
"; 
$message .= "$comments 
";
$header = "From: $name <$email>";

…I have an idea that I will try right now, but this is definitly the part that is causing me trouble, so once again suggestions would sweet… or maybe this isn’t that part and my limited PHP knowledge is killing my efforts - let me know :wink:

Peace

The reason some of your variables aren’t showing up, is becuase you aren’t using some of them in your code. you’re missing some.