Step 1 of 2: Name and ObjectClass(es)

RDN: (example: cn=MyNewObject)
Container:
ObjectClass(es):
$attr_display\n"; } // add the required attribute based on the RDN provided by the user // (ie, if the user specifies "cn=Bob" for their RDN, make sure "cn" is // in the list of required attributes. $rdn_attr = trim( substr( $rdn, 0, strpos( $rdn, '=' ) ) ); $rdn_value = trim( substr( $rdn, strpos( $rdn, '=' ) + 1 ) ); if( ! in_array( $rdn_attr, $required_attrs ) ) $required_attrs[] = $rdn_attr; ?>

Step 2 of 2: Specify attributes and values

Creating entry with DN: Instrucions: Enter values for the required attributes. Then create any optional attributes. You can specify multi-valued attributes as well.
$attr ) { ?>
Required Attributes
" . htmlspecialchars( $friendly_attrs[ strtolower( $attr ) ] ) . ""; } else { $attr_display = htmlspecialchars( $attr ); } echo $attr_display; ?>
Optional Attributes