in reply to What are acceptable web user id & password?
As for what characters to allow...are you asking about password strength for heightening security? I'm not aware if there's an industry standard, but I've often seen password schemes that require picking at least 3 different characters classes (where the four classes are often uppercase, lowercase, punctuation and numbers).# Just add any other valid characters after the \w if($password =~ /[^\w]/) { # invalid character supplied }
|
|---|