View Single Post
  #21 (permalink)  
Old 07-03-09, 05:17 AM
wirehopper's Avatar
wirehopper wirehopper is offline
-
 
Join Date: Feb 2006
Posts: 2,515
Thanks: 20
Thanked 109 Times in 106 Posts
Shut off javascript in your browser and test it - see what happens.

I think the problem is that
PHP Code:

$SendFrom =    "$fname <$femail>"
should be
PHP Code:

$SendFrom =    $_POST['fname'].' <'.$_POST['femail'].'>'
, and similar changes should be made for the other fields.

The {$_POST['name']} notation may not be working either. You might want to try it without the {}.
Reply With Quote