fumseckworld / form
A form builder
Installs: 157
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/fumseckworld/form
Requires
- php: >= 5.6.4
This package is not auto-updated.
Last update: 2017-10-22 15:46:02 UTC
README
A simple form builder
Installation
$ composer require fumseckworld/form
Usage
$url = array('/'=>'select a link','https://google.com'=>'google';) $redirect = Fondation::create()->redirectSelect('site',$url,'fa fa-hand-pointer-o')->end(); $fondationform = Foundation::create() ->start('/','class') // start the form ->img('/logo.jpg','alt') ->input('text','name','placeholder','fa icon') ->select('name',['one','two'],'icon') ->textarea('name','placholder',cols,row) ->submit('text','class') ->end(); $bootform = Bootstrap::create() ->start('/','class') // start the form ->img('/logo.jpg','alt') ->input('text','name','placeholder','fa icon') ->select('name',['one','two'],'icon') ->textarea('name','placholder',cols,row) ->submit('text','class') ->end();