On Fri, 29 Jun 2001 23:43, Clayton Dukes wrote:
> Okay, here's what I have so far:
>
> ---snip---
> if ((!$email)
>
>        || ($email=="")
>        || (!eregi("^[_\.0-9a-z-]+@domain.+[a-z]",$email))
>
>        )
>     $stop = "<center>"._ERRORINVEMAIL."</center><br>";
> ---snip---
>
> This works, but how can I add a second domain?

How 'bout;

---snip---
 if ((!$email)
        || ($email=="")
        || (!eregi("^[_\.0-9a-z-]+@domain|otherdomain.+[a-z]",$email)

        )
     $stop = "<center>"._ERRORINVEMAIL."</center><br>";
---snip---

Cheers,
Brad
-- 
Brad Hubbard
Congo Systems
12 Northgate Drive,
Thomastown, Victoria, Australia 3074
Email: [EMAIL PROTECTED]
Ph: +61-3-94645981
Fax: +61-3-94645982
Mob: +61-419107559

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to