Jump to content

Some advice would be gratefully received.....


shontay

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
Share on other sites

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.