Jump to content

Some advice would be gratefully received.....


Recommended Posts

The code below sits on a page named contact.php  Essentially this contains standard contact details, AS WELL as being the form processor for a Contact form which sits on each page across the website, and the action on this form is action="contact.php?send=yes"  which I hoped would then process the below.  So then the page CAN be a normal content page, although at other times, when actioned contact.php?send=yes, it would then execute the code below, however this doesn't seem to work?  And the server offers no error message to help me resolve this.  Any help would be much appreciated - I am just learning PHP!!  Thank you.     

 

<?

 

&sendemail = $_GET["send"];

 

if (&sendemail == "yes")

{

 

  $to = "tonyalawrence@hotmail.com, tonyalawrence@hotmail.co.uk";

  $from = "webserver@serverhere.co.uk";

  $subject = "Contact Form";

 

  while( list($var,$val) = each($HTTP_POST_VARS) ) {

  $email .= "$var: $val\n";

  }

  mail($to,$subject,$email,"From: $from");

  echo "<p>Your contact form message has been successfully sent!</p>";

 

}

?>

Link to comment
https://forums.phpfreaks.com/topic/79554-some-advice-would-be-gratefully-received/
Share on other sites

LOL, name noted down,

weird when members play games like this to try to get help faster but it just makes us mad and less likely to help!!

 

but then again i assume he didn't know he could bump or couldn't find his last post ;)

 

~suggest closing this topic~

Guest
This topic is now 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.