Possible Duplicate:
How to validate an email address in PHP
Below I have a piece of code where it checks for a valid email address:
if ( (strlen($getemail) >= 7) && (strstr($getemail, "@")) && (strstr($getemail, ".")) ){
But what my question is that what is the opposite of the code above so that I can check if the email typed in does not contain all of the features above?