php-form-builder icon indicating copy to clipboard operation
php-form-builder copied to clipboard

A simple, lightweight PHP class that makes creating forms easy

Results 6 php-form-builder issues
Sort by recently updated
recently updated
newest added

Added a field attribute, "group", and used vanilla javascript to wrap fieldsets around each set of controls with that group. The javascript is namespaced with a long, random string to...

$end .= $val['placeholder'] ? ' placeholder="'.$val['placeholder'].'"' : '';

Is it already possible to add a class to the "submit" button?

This fixes https://github.com/joshcanhelp/php-form-builder/issues/15

When generating a select-Input the given value is neglected and always the first option ist set initially. E.g. $form->add_input("Field", array("type" => "select", "options" => array ("1"=>"1", "2"=>"2"), "value"=>"2"), "field"); will...