Possible Duplicate:
How to validate an email in php5?
I have used the following code to ensure email addresses provided on signup are valid.
(!preg_match("/^( [a-zA-Z0-9] )+( [a-zA-Z0-9\._-] )*@( [a-zA-Z0-9_-] )+( [a-zA-Z0-9\._-] +)+$/" , $email))
I entered a standard email address such as
and it is flagging up as being invalid.
Can anyone help me with why this may be happening?
Why not just use filter_var
EDIT