Skip to content
Douglas Alves edited this page Nov 8, 2016 · 6 revisions

Description

This class is responsable to generate html form

Current Version: 1.0.0

Suports Description Version implemented Documentation Link
Multiple Fields 1.0.0 Somelink
Custom Style Fields 1.0.0 Somelink
Ajax Method not-implemented Somelink

Usage

use Backfront\Form\Form;

$form = new Form($form_id, $form_fields);

Parameters

$form_id (string) required

Unique id name of the html form.

Example:

$form = new Form('my_form');

Output:

<form id="my_form" name="my_form">
...
</form>

$form_fields

Clone this wiki locally