|
add this to your form <input type=hidden name=botcheck value=nobot>
then in the php script put this as your first line
if ($botcheck == "nobot") { } else {
$url = "SPAM"
}
where $url would be one of the items in your form like an url that will then get turned blank if the hidden input isn't present.
This isnt a great solution , but this will prevent most box-automated type submissions.
Just change the "botcheck" to something different every so often ( on both the form and the script )
__________________
hatisblack at yahoo.com
|