I am using the following script to try to have forms emailed to me. I get an email, but it is blank. Why>?????????
THIS IS MY SCRIPT:
<?
$cust_first_name = $_REQUEST ;
$cust_last_name = $_REQUEST ;
$cust_email = $_REQUEST ;
$cust_address = $_REQUEST ;
$cust_city = $_REQUEST ;
$cust_state = $_REQUEST ;
$cust_zip = $_REQUEST ;
$cust_phone = $_REQUEST ;
$number_of_employees = $_REQUEST ;
$cust_company_category = $_REQUEST ;
mail( "info@*******.com", "Contact Us Form Results", "From: $cust_email" );
?>
<script>
<!--
window.location= "http://www.********.com/tiothanks.htm"
//-->
</script>
<?php
exit;?>