Help! php flash form

I used one of the tutorials on here to create a flash form, its partly working, but i’ve got more fields than it originally had.

The tutorial had a Name, Email and Message field.

I have a Name, Company Name, Mobile, Email.

I’ve tested it and i’m getting the email through fine, but there is nothing in the body of the email. i changed the message(body variable) in the code to mobile and it displays mobile but no other details.

Obviously there is some code to be fiddled with in the php file, but me not knowing php i dunno what to put in so it corresponds with the new variables?

Can anyone help?

here is my form:
www.afrofunk.co.uk/allude/contact.html

here is the code:

<?php
/***************************************************\

// First, set up some variables to serve you in
// getting an email. This includes the email this is
// sent to (yours) and what the subject of this email
// should be. It’s a good idea to choose your own
// subject instead of allowing the user to. This will
// help prevent spam filters from snatching this email
// out from under your nose when something unusual is put.
$sendTo = “afrofunk@blueyonder.co.uk”;
$subject = “My Flash site reply”;
// variables are sent to this PHP page through
// the POST method. $_POST is a global associative array
// of variables passed through this method. From that, we
// can get the values sent to this page from Flash and
// assign them to appropriate variables which can be used
// in the PHP mail() function.

// header information not including sendTo and Subject
// these all go in one variable. First, include From:
$headers = “From: " . $_POST[“name”] .” “. $_POST[“companyname”] . “<” . $_POST[“email”] .”>
";
// next include a replyto
$headers .= "Reply-To: " . $_POST[“email”] . "
";
// often email servers won’t allow emails to be sent to
// domains other than their own. The return path here will
// often lift that restriction so, for instance, you could send
// email to a hotmail account. (hosting provider settings may vary)
// technically bounced email is supposed to go to the return-path email
$headers .= "Return-path: " . $_POST[“email”];
// now we can add the content of the message to a body variable
$name = $_POST[“mobile”];

// once the variables have been defined, they can be included
// in the mail function call which will send you an email
mail($sendTo, $subject, $name, $mobile, $headers);
?>

Much appreciated

:slight_smile: