form_close([$extra = ''])
Parameters: |
|
---|---|
Returns: |
An HTML form closing tag |
Return type: |
string |
Produces a closing </form> 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_close( $string ); // Would produce: </form> </div></div> |
Please login to continue.