void HTML_QuickForm::HTML_QuickForm (
string $formName = ''
, string $method = 'post'
, string $action = ''
, string $target = ''
, mixed $attributes
= null
, bool $trackSubmit
= false
)
Constructor, sets <form> tag attributes and loads submitted values.
$formName
Form's name.
$method
(optional) Form's method
$action
(optional) Form's action
$target
(optional) Form's target
$attributes
(optional) Extra attributes for <form> tag
$trackSubmit
(optional) Whether to track if the form was submitted by adding a special hidden field. If the name of such field is not present in the $_GET
or $_POST
values, the form will be considered as not submitted.
throws no exceptions thrown
This function can not be called statically.