How do I modify this so it just requires a minimum Password length of 8 characters, but no maximum?
PHP Code:if (preg_match( (?=.{8,15}$) # Ensure Length is 8-15 Characters
(?=.*?[A-Z]) # Check for at least 1 Upper-Case
(?=.*?[a-z]) # Check for at least 1 Lower-Case
(?=.*?[0-9]) # Check for at least 1 Number
(?=.*?[\~\`\!\@\#\$\%\^\&\*\(\)\_\-\+\=\{\[\}\]\|\:\;\"\'\<\,\>\.\?\/\\\\]) # Check for at least 1 Special-Character
){
Do I just changes things to this...
Thanks,PHP Code:if (preg_match( (?=.{8, }$)
Debbie



Reply With Quote




Bookmarks