OKAY I HAVE THREE INPUT TEXT BOXES (name, email, comments), AND ONE DYNAMIC BOX (results). YOU GO TO THE WEBPAGE AND YOU CAN FILL IN THE FORM, AND HIT THE SUBMIT BUTTON, BUT IT JUST SAYS, "Sending Data..." AND DOESN'T DO ANYTHING. Here's the action on the "Submit" button:

on (release) {
// logical operator checks length. IndexOf checks for "@" and "." characters in e-mail
if (!email.length || email.indexOf("@") == -1 || email.indexOf(".") == -1) {
results = "Please check your e-mail address.";
} else if (!comments.length) {
results = "Please enter your comments.";
} else if (!name.length) {
results = "Please enter your name.";
} else {
loadVariablesNum ("http://icdweb.cc.purdue.edu/~robbinba/mailform.php", 0, "GET");
results = "Sending Data...";
}
}

HERE'S THE <mailform.php> script:

<?php


$TextVariable = '&results=';
$response = 'Data Sent. Thank You..';


echo $TextVariable;
echo $response;

/* recipients */
$recipient .= "<[email protected]>" ;

/* subject */
$subject = "Your Automail";

/* message */
$message .= "Name: $name
Email: $email
Comments: $comments\n";

/* additional header pieces for errors, From cc's, bcc's, etc */
$headers .= "From: $name <$email>\n";


/* and now mail it */
mail($recipient, $subject, $message, $headers);


?>

OKAY SO WHAT COULD BE THE PROBLEM? I DON'T UNDERSTAND. SOMEONE HELP PLEASE. THANKS.