form_button([$data = ''[, $content = ''[, $extra = '']]])
Parameters:
$data (string) – Button name
$content (string) – Button label
$extra (mixed) – Extra attributes to be added to the tag either as an array or a literal string Returns:
An HTML button tag Return type:
string
Lets you generate a standard button element. You can minimally pass the button name and content in the first and second parameter:
echo form_button('name','content');
// Would produce: <button name="name" t