Elements

In This Article

Submit

Zend\Form\Element\Submit represents a submit button form input. It should be used with the FormSubmit view helper.

Basic Usage

This element automatically adds a type attribute of value submit.

use Zend\Form\Element;
use Zend\Form\Form;

$submit = new Element\Submit('my-submit');
$submit->setValue('Submit Form');

$form = new Form('my-form');
$form->add($submit);

Found a mistake or want to contribute to the documentation? Edit this page on GitHub!