Hello,
        I have a list of users in LDAP. I do a:
$result=ldap_search($ldapconn,"ou=Users,dc=domain,dc=com", "g
idNumber=100"); 
to find the group of accounts I am looking for. Now what I want to do is
take the uid from each entry and print it out. I have tried using

ldap_get _entries but it does not seem to be working. In order to cycle
thru the array I am attempting to use:

for ($i=0; $i < $info["count"]; $i++) {
    print $info[$i]["uid"][$i]."\n";
    }
Any help on what I am doing wrong would be greatly apprecieated.
Jim


-- 



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to