Issue with Quick Email validation

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,
I'm newbie to PHP and this list, possible not a new question so forgive me if it's a repeat 
I have a form where I want the submitter Email ID to only be from one domain

Here's the part I'm having issues with 

                                        $domain = explode( "@", $who);
                        if ( $domain[1] == "company.com") {
                                        echo $domain[1];
                                        echo("<h3>Email invalid.</h3>");
                                        exit;
                                        }

First Echo is just for me to check 
I type in a correct Email ID, say me@xxxxxxxxxxx 

The return of this is:

company.com
Email invalid.


As far as I can see this if statement should not fall in, what am I missing?



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux