This is my first attempt at getting a form to send the data via email. I am not getting an error report at all.
Here is the php to process the script:
<?
$toaddress = "billy_martinez@wgresorts.com";
$subject ="Classified Ad Request" ;
$fName = $POST['fName'];
$lName = $POST['lName'];
$department = $POST['mainDepartment'];
$location = $POST['mainLocation'];
$email = $POST['mainEmail'];
$phone = $POST['phone'];
$extenstion = $POST['extension'];
$contactMe = $POST['contactMe'];
$adRun = $POST['adRun'];
$category = $POST['category'];
$adInfo = $POST['adInfo'];
$donate = $POST['dontate'];
$payMethod = $POST[''];
$svcAgree = $POST['svcAgree'];
$fromaddress = "The CFI Savings Center Classified Section";
mail($toaddress, $subject, lfName, $lName, $department, $location, $email, $phone, $extenstion, $contactMe, adRun, $category, $adInfo, $donate, $payMethod, $svcAgree, $fromaddress);
?>
I think that whatis really confusing is that there is no error messages popping up. I have tried using $REQUEST in place of $POST but its the same thing.
Any help would be greatly appreciated.
Thanks...