Here is the code in my submit_form.php... what I am not understand is I guess when ever I echo out the $_SESSION['whateveritsnamed'] it works so the variables should be there no?
<?
session_start();
$name = $_SESSION['username'];
$dmail = $_SESSION['dmail'];
$print = $_SESSION['print'];
$weblayout = $_SESSION['weblayout'];
$homepage = $_SESSION['homepage'];
$aboutus = $_SESSION['aboutus'];
$services = $_SESSION['services'];
$team = $_SESSION['team'];
$contact = $_SESSION['contact'];
$other = $_SESSION['other'];
$otherInfo = $_SESSION['otherInfo'];
$bro = $_SESSION['bro'];
$poster = $_SESSION['poster'];
$first = $_FILES['first']['name'];
$second = $_FILES['second']['name'];
$third = $_FILES['third']['name'];
$fourth = $_FILES['fourth']['name'];
$fifth = $_FILES['fifth']['name'];
$content = $_FILES['content']['name'];
$logo = $_FILES['logo']['name'];
$instrucions = $_SESSION['instructions'];
$dhacontent = $_SESSION['dhacontent'];
$msg = "E-MAIL SENT FROM DHA Salon Registration Form\n";
$msg .= "Client Username: $_POST[$name]\n";
$msg .= "Direct Mail Campaign: $_POST[$dmail]\n";
$msg .= "Print Advertisement: $_POST[$print]\n";
$msg .= "Website Layout Template: $_POST[$weblayout]\n";
$msg .= "Page Chosen: $_POST[$homepage]\n";
$msg .= "Page Chosen: $_POST[$aboutus]\n";
$msg .= "Page Chosen: $_POST[$services]\n";
$msg .= "Page Chosen: $_POST[$team]\n";
$msg .= "Page Chosen: $_POST[$contact]\n";
$msg .= "Page Chosen: $_POST[$other]\n";
$msg .= "Other Pages Info: $_POST[$otherInfo]\n";
$msg .= "Brochure Template: $_POST[$bro]\n";
$msg .= "In-Store Poster: $_POST[$poster]\n";
$msg .= "File Uploaded: $_POST[$first]\n";
$msg .= "File Uploaded: $_POST[$second]\n";
$msg .= "File Uploaded: $_POST[$third]\n";
$msg .= "File Uploaded: $_POST[$fourth]\n";
$msg .= "File Uploaded: $_POST[$fifth]\n";
$msg .= "File Uploaded: $_POST[$content]\n";
$msg .= "File Uploaded: $_POST[$logo]\n";
$msg .= "Image File Instructions: $_POST[$instructions]\n";
$msg .= "Content: $_POST[$dhacontent]\n";
$to = "matt@davidhenryagency.com";
$subject = "DHA Salon/Spa Client Log-in Form";
$mailheaders = "From: DHA Salon/Spa Marketing <info@davidhenryagency.com> \n";
$contact = "Thank You for your interest in DHA Salon/Spa Marketing material. A DHA Salon/Spa Marketing Specialist will contact you within 24 hours or the next business day to assist you.";
$reply = "$_POST[email]";
mail($to, $subject, $msg, $mailheaders);
?>