bcamp1973 Posted October 28, 2006 Share Posted October 28, 2006 I'd like to create a function that detects email addresses in text and rewrites them so they're spam proof. has anyone done this? has it been effective for you? how did you go about it? Link to comment https://forums.phpfreaks.com/topic/25405-spam-protecting-email-addresses/ Share on other sites More sharing options...
Janus13 Posted October 28, 2006 Share Posted October 28, 2006 I haven't done it but you should be able to do it fairly simple. For example if you wanted to add the email address [email protected], and you wanted to spam protect it by adding NOSPAM in the middle you could do something like an explode on the text string of the post variable of the email address text box.[code]$email = $_POST['email']; //posted address is [email protected]$split = explode('@', $email); //splits the email address at the @ symbol of the address$email = $split[0] . "NOSPAM@" . $split[1]; //$email now equals [email protected][/code]This seems a simple way to do it. You could also put some checks to make sure the original email address is a valid formatted email address as well. Hope this is somewhat helpful!Jonathon Link to comment https://forums.phpfreaks.com/topic/25405-spam-protecting-email-addresses/#findComment-115883 Share on other sites More sharing options...
bcamp1973 Posted October 29, 2006 Author Share Posted October 29, 2006 sorry, i didn't explain myself well enough :) my goal is to have the email address show up on a web page so it remains readable to the viewer. So they would see something like, "Please contact [email protected] if you have issues with this website", but in the code the address needs to be encoded so the spambots can't read it. does that make sense? Link to comment https://forums.phpfreaks.com/topic/25405-spam-protecting-email-addresses/#findComment-116097 Share on other sites More sharing options...
pendelton Posted October 29, 2006 Share Posted October 29, 2006 If you write the e-mail to the page in its standard format then the spam bots will also read it. You could write code to output the e-mail address as an image using the PHP image processing and creation functions. Link to comment https://forums.phpfreaks.com/topic/25405-spam-protecting-email-addresses/#findComment-116105 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.