Btw! One advice to keep sertain spammers from comming back is not showing them that they are banned!
You could use the folowing PHP function to let them think the server is down:
Code:
if ($banned) {
sleep(rand(60,200));
}
and on top of submit the folowing:
Code:
if ($banned) {
sleep(rand(60,200));
header("HTTP/1.0 404 Not Found");
exit;
}
If they experience this, they won't go seeking a solution verry fast to bypass the ban!