Jump to content

[SOLVED] php emails do not match ??


marksie1988

Recommended Posts

Hi,

 

i have created a registration script for my website and i have added a new featurer that makes you enter your email address twice and then it is supposed to check if they are the same  and then if they are submit the form but if not show an error

 

but even if the email addresses are the same it still shows the error below is the code for the email checking

 

      /* Email error checking */
      $field = "email";  //Use field name for email
      $field2 = "email2";// Second field for email
      if(!$subemail || strlen($subemail = trim($subemail)) == 0){
         $form->setError($field, "* Email not entered");
  elseif(!$subemail2 || strlen($subemail2 = trim($subemail2)) == 0){
         $form->setError($field, "* Confirm Email not entered");
      }
      else{
         /* Check if valid email address */
         $regex = "^[_+a-z0-9-]+(\.[_+a-z0-9-]+)*"
                 ."@[a-z0-9-]+(\.[a-z0-9-]{1,})*"
                 ."\.([a-z]{2,}){1}$";
         if(!eregi($regex,$subemail)){
            $form->setError($field, "* Email invalid");
         }
         else if ($subemail !== $subemail2){
         	$form->setError($field2, "* Emails does not match");
         	}
         $subemail = stripslashes($subemail);
      }

 

Cheers

Link to comment
https://forums.phpfreaks.com/topic/57706-solved-php-emails-do-not-match/
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.