<perl>
#Erstellen des Dropdown1 Feldes
$DropDown1 = '<select name="LFELD1~=">';
get "","KATEGORIEN";
while (get_next("KATEGORIEN"))
{
$DropDown1 .= "<option value=\"$KFELD2\">$KFELD</option>";
}
$DropDown1 .= "</select>";
#Ausgabe des Suchformulars
out <<EOF; <form action="baseportal.pl?htx=/USER/TEMPLATE-ERGEBNIS&cmd=search" method="post" enctype="multipart/form-data">
<input type=hidden name="htx=" value="/USER/TEMPLATE-ERGEBNIS">
<input type=hidden name="cmd=" value="search">
$DropDown1
<input type="text" name="LFELD2~=" size=40 value="">
<input type="text" name="LFELD3~=" size=40 value="">
<input type="text" name="LFELD4~=" size=40 value="">
<input type=submit value="Eingabe senden"> <input type=reset value="Eingabe löschen">
</form></table>