my $form = new HTML::FillInForm; my $page = $form->fill(scalarref => \$html, fobject => $request); ####
enctype="application/x-www-form-urlencoded">
Pay by Parcel Name Address
Enter Search Value maxlength="255" length="50" />
##
## $tmpl_form->param( ACTION => "/path/to/my/script.cgi", DEFAULT => $request->param("searchkey"), ); ####
enctype="application/x-www-form-urlencoded">
Pay by checked="checked" />Parcel checked="checked" />Name checked="checked" />Address
Enter Search Value maxlength="255" length="50" />
##
## $tmpl_form->param( ACTION => "/path/to/my/script.cgi", DEFAULT => $request->param("searchkey"), PARCEL => $request->param("searchby") eq "Parcel" ? "true" : "", NAME => $request->param("searchby") eq "Name" ? "true" : "", ADDRESS => $request->param("searchby") eq "Address" ? "true" : "", ); #### $tmpl_form->param( ACTION => "/path/to/my/script.cgi" ); my $html = $tmpl_form->output; my $form = new HTML::FillInForm; $html = $form->fill(scalarref => \$html, fobject => $request);