|
Posted by Yandos on 11/18/05 16:47
On 17.11.2005 12:40, Angelos wrote:
> Thanks for that,
>
> at the moment I am trying this solution
>
> <?php
> $from=$_POST["sender"];
> if (eregi("\r",$from) || eregi("\n",$from)){
> die("Why ?? :(");
> }
> ?>
>
> And if that spam continues ...I'll have to find something else ....
>
> What do "they" have to earn by sending all this SPAM ???
> Is there any Money involved ... i don't think so ...
>
> Anyway thanks for your replies !!!
>
>
Best way how to stop automated abuse is using php generated images,
similiar which yahoo uses to prevent automated sign-ups. Users then must
write down the control number/string for each submit and you compare if
the submited control numer corresponds to the one you have generated
before processing user input. PHP has functions to work with images like
imagettftext etc. Good luck.
Y.
Navigation:
[Reply to this message]
|