Help for this page

Select Code to Download


  1. or download this
    $ldap = new Net::LDAP->('host.edu', port => '389');
    
  2. or download this
    $ldap = new Net::LDAP('host.edu', port => 389) or die "$@";
    
  3. or download this
    $ldap = Net::LDAP->new('host.edu', port => 389) or die "$@";