|
Posted by benb on 01/29/07 15:25
Hi
I've performed a query on Active Directory to pull usernames & mobile
numbers, using:
<snip>
$read = ldap_search($connect, $base_dn, $filter, $inforequired)
$info = ldap_get_entries($connect, $read);
This has returned an array (not sure of the type, is it multidimensional, or
an array of arrays?) with 2 values:
$info[$i]["displayname"][0]
and
$info[$i]["mobile"][0]
When I print this information in a table I get the following
John Doe 077654321
Joe Blogs 071234567
Alan Smith 077711223
....etc
How do I go about sorting this array, so that [displayname] is alphabetical?
I've tried using sort($info) but this seems to wipe the array, I've also
tried sort($info[0]["displayname"]) but that doesn't seem to sort anything!
Any help, or suggestions much appreciated!
Ben
Navigation:
[Reply to this message]
|