#=============================================================================== my @titlelist; open FILE, "<$ENV{'DOCUMENT_ROOT'}/data/vault/titlelist.txt" or die $!; @titlelist = ; close FILE; print br() x 5; print start_form( action=>'/cgi-bin/admin.pl' ); print table( {class=>'user_form'}, Tr( td( {width=>'55%'}, 'Select items' ), td( {width=>'35%'}, popup_menu( -name=>'title', -values=>\@titlelist )), td( {width=>'10%'}, submit('add'))), Tr( td( 'Soemthign to remark on order' ), td( {colspan=>2}, textarea( -name=>'remark', -rows=>6, -columns=>35 ))), Tr( td( 'ask for soemthing else if it snot listed on drop don menu' ), td( textfield( -name=>'request' )), td( submit('request'))), Tr( td( a( {href=>'/cgi-bin/show.pl?name=showbook'}, font( {size=>3, color=>'yellow'}, 'Change Order' ))), td( {colspan=>2}, submit( 'Order!' ))) ); print hidden(-name=>'date', -value=>$date); print hidden(-name=>'host', -value=>$host); print end_form(); print br() x 5; #===============================================================================