Jump to content

spam protecting email addresses


bcamp1973

Recommended Posts

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
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?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.