Forum Moderators: coopster
1) if string has more than 1 url, don't submit
2) if string has any (insert list of words) occur, don't submit
But unfortunately I can't code PHP much at all.
Any help out there? I can install code already written, but can't free-hand it.
A very simple way of doing it is to have one image containing a word and/or numbers. The user must submit this phrase in order to submit their post. Then your script has code like this when a post is submitted:
<?php
if($_POST['captcha'] == 'abc123') // Replace with real phrase!
{
// Add comments to shoutbox
}
else
{
// Don't add comments!
}
?>
This is a VERY simple solution and wont stop a real live person from spamming, but it virtually eliminated automated spam signups on my forum. :)