spam keywords fra database eller tekstfil
Jeg har understående kode, som virker. Men jeg er træt at skulle ind og ændre i min php fil hver gang jeg skal smide nye ord ind.Hvordan får jeg lavet det mere effektivt..
jeg har en adminsite hvor jeg laver diverse ændreinger til mit galleri og nyheder og kartoteker. så jeg tænkte på at lave et modul der hvor man kan skrive nogle keywords som så understående kode..
function add_comment($parent_id,$author,$email,$url,$comment) {
global $TABLE_PREFIX;
global $config;
if (empty($config["allow_comments"])) {
return array("errors" => "Comments disabled");
};
if (empty($author) || empty($email)) {
return array("errors" => "Your comment did not post! Please fill the required fields.");
};
if ( stristr($comment,'xanax')
|| stristr($comment,'tramadol')
|| stristr($comment,'phentermine')
|| stristr($comment,'levitra')
|| stristr($comment,'soma')
|| stristr($comment,'ultram')
|| stristr($comment,'viagra')
|| stristr($comment,'enzyte')
|| stristr($comment,'cialis')
|| stristr($comment,'meridia')
|| stristr($comment,'ativan')
|| stristr($comment,'vicerex')
|| stristr($comment,'prozac')
|| stristr($comment,'diazepam')
|| stristr($comment,'valium')
|| stristr($comment,'hydrocodone')
|| stristr($comment,'ambien')
|| stristr($comment,'pharmacy')
)
{
return array("errors" => "<font color=blue>It appears that you are a <font color=red><i>SPAMMER</i></font>. Your posts are not welcome here. Please make a quick buck elsewhere.</font>");
}