Hi there
I hope you are well, Larry.
I decided to re-visit my 'Contact us' page and review the spamscrubber. I was having trouble getting the spamscrubber to fish out the '\n's and '\r's to the extent that I changed the blank spaces to letters:
function spam_scrubber($value)
{
//Create spam scrubber array..............
$very_bad = array('to:' , 'cc:' , 'bcc:' , 'content-type:' , 'mime-version' , 'multipart-mixed' , 'content-transfer-encoding:');
//For loop comparing email text to bad words.......
foreach ($very_bad as $v)
{