dushica / html
There is no license information available for the latest version (0.3) of this package.
Simple HTML builder for PHP
0.3
2015-07-26 11:02 UTC
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2024-12-25 11:30:30 UTC
README
$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;