Jump to content

Recommended Posts

Thanks for the help guys, I can't get this right:

 

if(isset($name)) {
   $name = $_GET['name'];
   $headers = "From: "-f .$name."@myemail.com"; 
   $to = "[email protected]";
   $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 = "[email protected]";
   $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? :(

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?

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.