Wow, that's a lot of code to dig through. Can you paste something smaller like line 39-42 so that I can see what is there?
also, you can change this part of the code:
<?php
$subject="Clan Application FOR: ".$_REQUEST['position'];
$application = array("Name" => "$_REQUEST['name']",
"AA Name" => "$_REQUEST['aa_name']",
"Honor" => "$_REQUEST['honor']",
"Age" => "$_REQUEST['age']",
"Contact Email" => "$_REQUEST['contact']",
"Other Games Played" => "$_REQUEST['games']",
"Desciption" => "$_REQUEST['descibe']",
"Reffering Member" => "$_REQUEST['member']");
//Can be changed to this:
$subject='Clan Application FOR: '. $_REQUEST['position'];
$application = array('Name' => $_REQUEST['name'],
'AA Name' => $_REQUEST['aa_name'],
'Honor' => $_REQUEST['honor'],
'Age' => $_REQUEST['age'],
'Contact Email' => $_REQUEST['contact'],
'Other Games Played' => $_REQUEST['games'],
'Desciption' => $_REQUEST['descibe'],
'Reffering Member' => $_REQUEST['member']);
?>You shouldn't enclose arrays like $_REQUEST inside "quotes".