Jump to content

postcode validation (was Email validation)


caroline_162

Recommended Posts

Hello, this is my current code, take from the form validation part of my code. ATM it just checks if the email is valid. I was wondering if anyone could advise me how to make it so that it allows a email address not to be entered. but still validate anything that is entered. so it becomes an optional item on my form.

Thanks

 

 

if (!preg_match("/^[a-z]{1,2}[0-9]{1,2} [0-9]{1,2}[a-z]{1,2}$/i", $address_postcode)) {
print "Postcode needs to be in Se24 8IO Format ";

Link to comment
Share on other sites

First of all I recommend using the filter_var () function, with the VALIDATE_EMAIL flag, to validate the e-mail address.

 

As for the conditional filtering, this is the perfect time to leverage the short-circuiting of the operators in PHP:

if (!empty ($address_postcode) && !filter_var ($address_postcode, VALIDATE_EMAIL)) {
   // Non-empty and failed validation.
}

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.