An open API service indexing awesome lists of open source software.

https://github.com/ghostffcode/php-html-form-generator


https://github.com/ghostffcode/php-html-form-generator

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

PHP Html form generator [Documentation](http://ghostff.com/library/php/Html_form_generator)
----------
Generates a clean and functional HTML5 form markup

#USAGE
```php
$form = new Form('auth.php');
echo $form->text('username')
->password('password')
->hidden('token')->val('__token')
->submit('submit')
->rest();
```