Hi Everyone. I have the following preg_match to check user passwords contain
elseif (!preg_match( "((?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,15})",$bpwd ) ) {
1 Upper Case Letter
1 lower case letter
1 number
It works as described, but what I am looking to do is to create a stronger password requirement.
I would like to add the following special characters !,@,?,# to be required when users are creating passwords.
Any help would be greatly appreciated.
Thanks