Really stuck. I knew how to do this once, and now I don't.
Here is what I already have:
if (preg_match('[^A-Za-z]' + NULL, $eadd)) {
echo "This contains characters other than letters and numbers";
}
else {
echo "This contains only letters and numbers";
}
HELP!