Active Directory/Connect: Difference between revisions

Perl solution, basically the same as Ruby
(Description requires improvement)
(Perl solution, basically the same as Ruby)
Line 4:
 
{{omit from|Clojure}}
 
=={{header|Perl}}==
[http://search.cpan.org/dist/perl-ldap/|Perl LDAP Modules]
<lang perl>
use Net::LDAP;
 
my $ldap = Net::LDAP->new('ldap://ldap.example.com') or die $@;
my $mesg = $ldap->bind( $bind_dn, password => $bind_pass );
</lang>
 
=={{header|PHP}}==