form_fieldset_close([$extra = ''])
Parameters: |
|
---|---|
Returns: |
An HTML fieldset closing tag |
Return type: |
string |
Produces a closing </fieldset> tag. The only advantage to using this function is it permits you to pass data to it which will be added below the tag. For example
1 2 3 | $string = '</div></div>' ; echo form_fieldset_close( $string ); // Would produce: </fieldset></div></div> |
Please login to continue.