On 24 November 2010 19:13, Ron Piggott <ron.pigg...@actsministries.org> wrote:
>
> I am using this syntax to check for a valid e-mail address
>
> list($userName, $mailDomain) = split("@", $buyer_email);
> if (checkdnsrr($mailDomain, "MX")) {
>
> if no domain is provided ( ie e-mail address is something like “ron” with no 
> @ ) the following error is displayed:
>
> Warning: checkdnsrr() [function.checkdnsrr]: Host and type cannot be empty
>
> Can I suppress this from displaying so *just* my error message displays?
>
> Ron
>
> The Verse of the Day
> “Encouragement from God’s Word”
> http://www.TheVerseOfTheDay.info

I would first check to see if there is an @ in $buyer_email.

if (False !== strpos($buyer_email, '@')) {
 // Your code goes here.
}

If you turn on notices, you'll see you are getting ...

Notice: Undefined offset: 1 in ...

So, you are actually generating 2 errors by not checking for the @ first.



-- 
Richard Quadling
Twitter : EE : Zend
@RQuadling : e-e.com/M_248814.html : bit.ly/9O8vFY

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to