Voting

: one minus zero?
(Example: nine)

The Note You're Voting On

JoshuaStarr at aelana dot com
23 years ago
To modify an attribute with a single value:
$entry[mail] = "[email protected]";
$results = ldap_mod_add($ldapConnID,$dn, $entry);

To modify an attribute with multiple values:
$entry[mail][] = "[email protected]";
$entry[mail][] = "[email protected]";
$results = ldap_mod_add($ldapConnID,$dn, $entry);

To modify multiple attributes
$entry[mail][] = "[email protected]";
$entry[mail][] = "[email protected]";
$entry[c] = "US";
$results = ldap_mod_add($ldapConnID,$dn, $entry);

<< Back to user notes page

To Top