Help for this page

Select Code to Download


  1. or download this
    ##
    @entries = $mesg->entries;
    ...
    @attrs = $entry->attributes();
    $entry->get_value($attr));
    ##
    
  2. or download this
     #!/usr/bin/perl
    use Net::LDAP;
    $ldap = Net::LDAP->new("localhost");
    ...
                    printf("\t%s: %s\n", $attr, $entry->get_value($attr));
            }
    }