Download the PHP package dushica/html without Composer
On this page you can find all versions of the php package dushica/html. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package html
Simple HTML Builder for PHP
$builder = new Dushica\Html\Builder;
// By default are 'input' and 'br'
$builder->setNoClose(['input', 'br', 'hr']);
//Add one more tag that not must be closed
$builder->addNoClose('link');
//Format html code, by default is true
$builder->minify = false;
$builder
->html()
->body()
->text('Insert your Firstname: ')
->br()
->input(['placeholder'=>'Firstname'])
->hr()
->text('Insert your Lastname: ')
->br()
->input(['placeholder'=>'Lastname'])
->end()
->end();
echo $builder;
All versions of html with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.4.0
The package dushica/html contains the following files
Loading the files please wait ....