Re: [PHP] How to stop site flipping?

2002-05-14 Thread Kirk Babb
I have a listing of department alumni which calls up their email address when one of the form buttons (letters of the alphabet) is clicked. The emails are not hard-coded; the form sends the $letter to a php script which handles all the usual stuff (the query, getting the array for the query,

Re: [PHP] How to stop site flipping?

2002-05-14 Thread Miguel Cruz
On Tue, 14 May 2002, Kirk Babb wrote: I have a listing of department alumni which calls up their email address when one of the form buttons (letters of the alphabet) is clicked. The emails are not hard-coded; the form sends the $letter to a php script which handles all the usual stuff (the

[PHP] How to stop site flipping?

2002-05-13 Thread David McInnis
I have been running a newswire service since 97 and recently noticed an increase in the number of people flipping our site to harvest email addresses contained in the news releases posted on our site. (prweb.com) I am running apache and php on a linux box. Can anyone suggest something that I

Re: [PHP] How to stop site flipping?

2002-05-13 Thread Jason Morehouse
A good start is: http://www.neilgunton.com/spambot_trap/ Though it has some specific details for mod_perl, much of the information can be tied to php. On Mon, 13 May 2002, David McInnis wrote: I have been running a newswire service since 97 and recently noticed an increase in the number of

Re: [PHP] How to stop site flipping?

2002-05-13 Thread John S. Huggins
If they reveal themselves in the AGENT info of each web request, you could act on that accordingly in your PHP code by looking at the REQUEST_AGENT variable. I use this tactic to prevent web sucking programs from access my site all at once. On Mon, 13 May 2002, David McInnis wrote: -I have

Re: [PHP] How to stop site flipping?

2002-05-13 Thread Justin French
This might help: I have a php file in my doc root called email.php. Instead of linking an email address with A HREF=mailto:[EMAIL PROTECTED];, I link it like this: A HREF=email.php?to=justindomain=indent.com.auJustin French/a (Actually I do it with a function, but for clarity sake, I'll leave

RE: [PHP] How to stop site flipping?

2002-05-13 Thread Cal Evans
] Subject: Re: [PHP] How to stop site flipping? This might help: I have a php file in my doc root called email.php. Instead of linking an email address with A HREF=mailto:[EMAIL PROTECTED];, I link it like this: A HREF=email.php?to=justindomain=indent.com.auJustin French/a (Actually I do