Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 634 Bytes

hidden.md

File metadata and controls

26 lines (18 loc) · 634 Bytes

Hidden Field

Represents <input> element of type "hidden" that lets web developer to include data that shouldn't be seen or modified by users when a form is submitted. Documentation:

Usage Example

Widget:

use Yiisoft\Form\Field\Hidden;

echo Hidden::widget()
    ->name('key')
    ->value('x100')
    ->inputId('hiddenform-key');

Result will be:

<input type="hidden" id="hiddenform-key" name="key" value="x100">