Voting

: one plus seven?
(Example: nine)

The Note You're Voting On

JoshuaStarr at aelana dot com
23 years ago
To add a new attribute with a single value:

$entry[mail] = "[email protected]";
$results = ldap_mod_add($ldapConnID, $dn, $entry);

To add a new attribute with multiple values:

$entry[mail][] = "[email protected]";
$entry[mail][] = "[email protected]";
$results = ldap_mod_add($ldapConnID, $dn, $entry);

<< Back to user notes page

To Top