
 Matías montes - 2006-10-21 15:44:16 - 
In reply to message 1 from Shoeb 
Hi Acciles.
you can declare Reset Buttons as any other input:
$f->AddInput(array(
  "TYPE" => "reset",
  "VALUE" => "Reset Form Values",
  "ID" => "reset_button",
  "NAME" => "reset_button"
));
And then add it to the output:
$f->AddInputPart("reset_button");