Jump to content

Email address validation form


melting_dog

Recommended Posts

Hi guys,

 

Trying to ge this to work:

 

 

function  checkEmail($useremail) {

if (!preg_match("/^( [a-zA-Z0-9] )+( [a-zA-Z0-9\._-] )*@( [a-zA-Z0-9_-] )+( [a-zA-Z0-9\._-] +)+$/" , $useremail)) {

  return false;

  $error = '<div id="blackText"><p>Sorry! Please check your email address and try again!<p><p><a href="forumsSignUp.php">Back</a></p></div>';

}

return true;

 

//PASSWORD AND OTHER VALIDATION STUFF, blah blah blah

 

}

 

But its just not. Everything works fine if I remove this though. Can anyone suggest an alternative to email address validation? Thanks!

Link to comment
https://forums.phpfreaks.com/topic/249239-email-address-validation-form/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.