Looking for a scrip or a program that will verify rather the emails in my database are dead or active .
Looks like that php script would work good to put on a form to make sure they enter the "email" field correctly but it won't actually check to see if the emails Remy718 already has in his database are still working.
var emailReg = "^[\\w-_\.]*[\\w-_\.]\@[\\w]\.+[\\w]+[\\w]$"; var regex = new RegExp(emailReg); if (!regex.test(document.getElementById('txtEmail').value)) //if (document.getElementById('txtEmail').value.indexOf('.')==-1 ||document.getElementById('txtEmail').value.indexOf('@')==-1 || document.getElementById('txtEmail').value.lastIndexOf('.') < document.getElementById('txtEmail').value.indexOf('@')) { alert ("يجب إدخال بريد صØÙŠØ"); document.getElementById('txtEmail').focus(); return false; } else { postFeedbackVal(); }