Help for this page

Select Code to Download


  1. or download this
    my $password ="asdf";
    
    ...
    } else {
        print "password is okay";
    }
    
  2. or download this
    my $password ="asdf";
    
    if (index("qwertyuiopasdfghjklzxcvbnm",lc($password)) > -1) {
    ...
    }