PEAR:HTML_QuickForm
Join the DZone community and get the full member experience.
Join For FreeHTML_QuickForm($form_name,$http_method,$rel_path,$target,$HTML_attributes)
// use the default method (POST), but change the action URL
$default_form = new HTML_QuickForm('default_form','','/dir/page.php');
// use the default $rel_path as $_SERVER['PHP_SELF']
$get_form = new HTML_QuickForm('get_form','GET');
// set form HTML attributes
$css_form = new HTML_QuickForm('css_form','','','','class="cform" id="css_form"');
// add button with HTML attribute
$css_form->addElement('button', 'close', 'Close','onClick="test();"');
Opinions expressed by DZone contributors are their own.
Comments