Voting

: min(six, three)?
(Example: nine)

The Note You're Voting On

chris at mr2madness dot com
17 years ago
You can use arrays for multiple attributes example:

<?php
$entry
[mail] = array("[email protected]","[email protected]");
$results = ldap_mod_add($ldapConnID,$dn, $entry);
?>
or as i did for creating anew user:
<?php
$adduserAD
["objectClass"] = array("top","person","organizationalPerson","user");
?>

<< Back to user notes page

To Top