Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -wT
    use strict;
    ...
    print $cgi->p("Login: " . $customObject->login()),
          $cgi->p("Password: " . $customObject->password()),
          $cgi->end_html();
    
  2. or download this
    package CustomObject;
    
    sub login {
    ...
    }
    
    1;