Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Lucius Agrippa

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

PEAR:HTML_QuickForm

HTML_QuickForm($form_name,$http_method,$rel_path,$target,$HTML_attributes)

   1  
   2  
   3  // use the default method (POST), but change the action URL
   4  $default_form = new HTML_QuickForm('default_form','','/dir/page.php');
   5  
   6  // use the default $rel_path as $_SERVER['PHP_SELF']
   7  $get_form = new HTML_QuickForm('get_form','GET');
   8  
   9  // set form HTML attributes
  10  $css_form = new HTML_QuickForm('css_form','','','','class="cform" id="css_form"');
  11  
  12  // add button with HTML attribute
  13  $css_form->addElement('button', 'close', 'Close','onClick="test();"');
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS