Meth0de 1
<?php
$dName = $_POST["1"];
$Message = $_POST["2"];
?>
Meth0de 2
<?php
$word_not_aloud = array("word", "word1", "word2");
if (in_array($_POST['name'], $word_not_aloud))
{
echo "Error can not use that word.....";
} else
{
// continue with submitting the email
}
?>
Wusste jetzt nicht genau, was du meinst.