https://github.com/ghostffcode/php-html-form-generator
https://github.com/ghostffcode/php-html-form-generator
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/ghostffcode/php-html-form-generator
- Owner: ghostffcode
- Created: 2016-03-21T15:16:25.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-11-05T17:47:48.000Z (over 9 years ago)
- Last Synced: 2024-10-18T20:48:39.094Z (over 1 year ago)
- Language: PHP
- Size: 20.5 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
```