Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
//Rudimentary check for email injection hack
//Add the fields used in your form in this case I am checking $flds['name'] etc.
if (eregi("MIME-Version: ", $flds['name'].$flds['email'].$flds['body'])) {
mail($flds['recAdd'], "Email injection attempt", "Attempted email injection on ".$sitename,"From: ".$sitename);
die('Spammers not welcome!');
}