Difference between revisions of "Nobots.php"

From Organic Design wiki
("no robots")
m
Line 6: Line 6:
 
$article
 
$article
 
);
 
);
$article = str_replace( '(new users only)', '(new users only - no robots!)' );
+
$article = str_replace( '(new users only)', '(new users only - no robots!)', $article );
 
?>
 
?>

Revision as of 05:12, 3 March 2006

<?

  1. Add an "I am a human" checkbox to stop spambots for a while

$article = preg_replace( "/(Your email\\*:.+?)<\\/tr>/is",

"$1<input type='checkbox' name='xwHuman' value='0'>Yes I'm a meat creature",

$article ); $article = str_replace( '(new users only)', '(new users only - no robots!)', $article ); ?>