Designed a "join" form in Flash and, being new to PHP, I looked around at several tutorials in order to get the information in the input fields sent via PHP. Problem is, every tutorial I've found handles this differently and none seem to work for me. Finally created a PHP where I received an email from via Flash's getURL, but the email is blank. Here's the PHP code I came up with. I've also tried REQUEST instead of POST, but to no avail. Each of the $-- is the name of the instance in Flash.
<?php
$name = $POST['name'] ;
$currentname = $POST['currentname'] ;
$email = $POST['email'] ;
$class = $POST['class'] ;
$faculty = $POST['faculty'] ;
$email = $POST['email'] ;
$address = $POST['address'] ;
$city = $POST['city'] ;
$state = $POST['state'] ;
$zip = $POST['zip'] ;
$birthday = $POST['birthday'] ;
$occupation = $POST['occupation'] ;
$stuff = $_POST['stuff'] ;
mail( "at19mnbmterr@hotmail.com", "MAA Join Form Results",
$message, "From: $email" );
header( "Location: http://www.hodaddon.com/MORNINGSIDE/thankyou.html" );
?>
Please help!!