Hi,
How do i match and email, but not my own email?
change
preg_match('/\b[a-zA-Z0-9\.\_]+@[a-zA-Z0-9\.\-]+\.[a-zA-Z\.\-]+\b/',$customers,$email);
to
preg_match('/\b[a-zA-Z0-9\.\_]+@[a-zA-Z0-9\.\-]+\.[a-zA-Z\.\-]+\b[¬ farley99@hotmail.com]/',$customers,$email);
what is the correct syntax for the above?
How do i match and email, but not my own email?
change
preg_match('/\b[a-zA-Z0-9\.\_]+@[a-zA-Z0-9\.\-]+\.[a-zA-Z\.\-]+\b/',$customers,$email);
to
preg_match('/\b[a-zA-Z0-9\.\_]+@[a-zA-Z0-9\.\-]+\.[a-zA-Z\.\-]+\b[¬ farley99@hotmail.com]/',$customers,$email);
what is the correct syntax for the above?