dev-master
9999999-devGenerates hidden form input fields
The Requires
by Fabio Souto
html forms fields
1.0.0
1.0.0.0Generates hidden form input fields
The Requires
by Fabio Souto
html forms fields
Wallogit.com
2017 © Pedro Peláez
Generates hidden form input fields
Generates hidden html input tags., (*1)
Use composer:, (*2)
composer require flsouto/hthidden
Notice: this library relies on the HtField class. The inherited functionality will not be covered here. Read this documentation if you want to learn more about it., (*3)
The example below creates a hidden input named "submit" with a value of "1":, (*4)
<?php
require_once('vendor/autoload.php');
use FlSouto\HtHidden;
$hidden = new HtHidden("submit", "1");
echo $hidden;
Output:, (*5)
<input id="588a9398b198f" name="submit" type="hidden" value="1" />
Wow!! This is some rocket science!!, (*6)
Generates hidden form input fields
html forms fields
Generates hidden form input fields
html forms fields