Browse Source

add some security to mail script

master
David Miller 10 years ago
parent
commit
a9222141c1
  1. 8
      mail/contact_me.php

8
mail/contact_me.php

@ -10,10 +10,10 @@ if(empty($_POST['name']) ||
return false; return false;
} }
$name = $_POST['name']; $name = strip_tags(htmlspecialchars($_POST['name']));
$email_address = $_POST['email']; $email_address = strip_tags(htmlspecialchars($_POST['email']));
$phone = $_POST['phone']; $phone = strip_tags(htmlspecialchars($_POST['phone']));
$message = $_POST['message']; $message = strip_tags(htmlspecialchars($_POST['message']));
// Create the email and send the message // Create the email and send the message
$to = 'yourname@yourdomain.com'; // Add your email address inbetween the '' replacing yourname@yourdomain.com - This is where the form will send a message to. $to = 'yourname@yourdomain.com'; // Add your email address inbetween the '' replacing yourname@yourdomain.com - This is where the form will send a message to.

Loading…
Cancel
Save