Example: mldap_modify

In the following example, the mldap_modify function changes the name attribute to Jane.

mldap_modify("LDAP Modify",
         "DN=cn=Sally R. Jones,OU=Sales,DC=TECHNO,DC=com",
         "AttrName=name",    // Name of attribute
         "AttrValue=Jane",    // New Value
         LAST );