We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Forms are created by calling:
theme('form', $form);
The format for $form is:
array( 'type' => 'form', 'method' => <'get' or 'post'>, 'action' => <name of command handler>, 'hidden' => array( 'hiddenVar' => 'hiddenValue', 'hiddenVar2' => 'hiddenValue2', ... ), 'fields' => array( $field1, $field2, ... ) );