Help for this page

Select Code to Download


  1. or download this
    my $htp = new Apache::Htpasswd;("/home/httpd/conf/.htptestaccess")
    my $User = 1;
    ...
        $htp->htpasswd("User_" . $User, $PassWord);
        $User ++;
    }
    
  2. or download this
        system 'htpasswd', '-b', '-m', '/home/httpd/conf/.htptestaccess', 
    +$User, $PassWord;