Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


PayPal Valid Email Checker filter_list
Author
Message
RE: PayPal Valid Email Checker #3
What exactly do you mean by valid email? Do you want to check if the entered string is a valid email (like containing an @ followed by a valid domain) or do you want to check wheather the entered email is verified by paypal?
You can check if it's a valid email by using the filter_var function.
Code:
if (filter_var($email, FILTER_VALIDATE_EMAIL)) {
   // Valid email
}
In case you are looking for the second thing take a look at the GetVerifiedStatus function of the PayPal API.

Reply





Messages In This Thread
PayPal Valid Email Checker - by Mr-joker - 12-01-2017, 05:04 PM
RE: PayPal Valid Email Checker - by hacxx - 12-05-2017, 09:41 PM
RE: PayPal Valid Email Checker - by chunky - 12-29-2017, 09:10 PM



Users browsing this thread: 1 Guest(s)