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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.