mark103 Posted January 23, 2011 Author Share Posted January 23, 2011 Thanks for the help guys, I can't get this right: if(isset($name)) { $name = $_GET['name']; $headers = "From: "-f .$name."@myemail.com"; $to = "myname@myemail.com"; $subject = $type; $message = "$comments & $rate" ; $header .= "MIME-Version: 1.0\l\n"; $add = "-f". $name ."@myemail.com"; mail($to, $subject, $message, $header, $add); echo "Thank you for sent us your feedback"; } } elseif(isset($email)){ $email = $_GET['email']; $headers = "From: $email"; $to = "myname@myemail.com"; $subject = $type; $message = "$comments & $rate"; $header .= "MIME-Version: 1.0\l\n"; $add = $email; mail($to, $subject, $message, $header, $add); } echo "Thank you for sent us your email"; } What's wrong? Quote Link to comment Share on other sites More sharing options...
PFMaBiSmAd Posted January 23, 2011 Share Posted January 23, 2011 I can't get this right: Since you didn't state what problem, error, or other symptom you saw in front of you that leads you to believe that part of the code isn't right, no one here can really help you based on what you posted above. Did you even add the validation code that someone posted to test if only one of $name or $email is set and are you testing if there were no validation errors before you actually execute the final part of the code on that page? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.