1
hello,
does the team think about encoding members email adresses with a small function in order to limit spam ?
i saw this one (in french) which seems to be easy to add :
function hex_encode ($str)
{
$encoded = bin2hex($str);
$encoded = chunk_split($encoded, 2, '%');
$encoded = '%'.substr($encoded, 0, strlen($encoded) - 1);
return $encoded;
}
?>
http://www.neokraft.net/sottises/mailencoder/index.html?mail=team@xoops.org