Here is what I have for my form I dont know why it keeps telling me : "HTTP verb used to access this page is not allowed."
// Receiving variables
@$FirstName = addslashes($_POST['FirstName']);
@$LastName = addslashes($_POST['LastName']);
@$Address = addslashes($_POST['Address']);
@$City = addslashes($_POST['City']);
@$State = addslashes($_POST['State']);
@$ZipCode = addslashes($_POST['ZipCode']);
@$PrimaryPhone = addslashes($_POST['PrimaryPhone']);
@$SecondaryPhone = addslashes($_POST['SecondaryPhone']);
@$TimeToCall = addslashes($_POST['TimeToCall']);
@$Email = addslashes($_POST['Email']);
@$HomeOwner = addslashes($_POST['HomeOwner']);
@$LoanType = addslashes($_POST['LoanType']);
@$Property Type = addslashes($_POST['Property Type']);
@$PropertyValue = addslashes($_POST['PropertyValue']);
@$MortgageRate = addslashes($_POST['MortgageRate']);
@$MortageType = addslashes($_POST['MortageType']);
@$CreditRate = addslashes($_POST['CreditRate']);
// Validation
//Sending Email to form owner
# Email to Owner
$pfw_header = "From: $Email";
$pfw_subject = "Smarter Home Solutions Quote";
$pfw_email_to = "info@shsmortgages.com";
$pfw_message = "FirstName: $FirstName\n"
. "LastName: $LastName\n"
. "Address: $Address\n"
. "City: $City\n"
. "State: $State\n"
. "ZipCode: $ZipCode\n"
. "PrimaryPhone: $PrimaryPhone\n"
. "SecondaryPhone: $SecondaryPhone\n"
. "TimeToCall: $TimeToCall\n"
. "Email: $Email\n"
. "HomeOwner: $HomeOwner\n"
. "LoanType: $LoanType\n"
. "Property Type: $Property Type\n"
. "PropertyValue: $PropertyValue\n"
. "MortgageRate: $MortgageRate\n"
. "MortageType: $MortageType\n"
. "CreditRate: $CreditRate\n";
@mail($pfw_email_to, $pfw_subject ,$pfw_message ,$pfw_header ) ;
echo("<p align='center'><font face='Arial' size='3' color='#FF0000'>Thank you we will be in touch with you soon. <br>Please Go Back.</font></p>");
?>