Jump to content

regex ugh


CincoPistolero

Recommended Posts

I have a field that is not required. I only want the regex to validate if something is entered. With what I have below it tries to validated the blank data. Is there away to make it ignore (i'm not sure what to call it) white space, empty space, non entered data.

 

// Check for wrong characters in phone2
	if(!preg_match('~^[0-9.-]+$~',$_POST['phone2'])) {
		die('<div id=error><table cellpadding="0" cellspacing="0" border="0" align="center" bgcolor="#ffffff">
      <tr>
        <td><br><br>Only numbers in second phone number.<br><a href="javascript:history.back()">Back</a><br><br></td>
      </tr>

    </table></div>');
}

Link to comment
https://forums.phpfreaks.com/topic/180240-regex-ugh/
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.