form_fieldset_close()

form_fieldset_close([$extra = ''])

Parameters:
  • $extra (string) – Anything to append after the closing tag, as is
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>
doc_CodeIgniter
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.