Jump to content

if variable not working


mark103

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?

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.