Quote:
Originally Posted by 69robbyITA
So leave of this thread and stop insult if u are not able to insert correct mail.
|
He's right, I inserted a real E-Mail too, but it didn't work.
Just turn off the check if the email is real.
You just have to send an email to the given email and that's enough.
If it'S a real e-mail, he can register with the code you send to the email.
Else he don't get an e-mail.
This is the easiest way to avoid the annyoing message
BTW: Maybe you RegEX to check if it's an email is wrong?
Use this short function to check:
Code:
<?php
if(filter_var("
", FILTER_VALIDATE_EMAIL)) {
// valid address
}
else {
// invalid address
}
?>
Then there shouldn't be the problem again