Janfek Esquivel wrote: > I have a text file and what I want to know is the instruction to read a > text > box and 2 list boxes (at the same time or one at a time) from an HTML, so > with that information, be able to find information on my txt file. > Thanks in advance. >
please check out CGI.pm. it has all answers to you question and more. example: #!/usr/bin/perl -w use strict; use CGI qw/:standard/; my $text = param('name_of_your_text_box'); my $list1 = param('name_of_your_list_box_1'); my $list2 = param('name_of_your_list_box_2'); print "Content-Type: text/html\n\n"; print "you select: $text from my text box<br>\n"; print "you select $list1 from my first list box<br>\n"; print "you select $list2 from my second list box<br>\n"; __END__ does this do what you need to do? david -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]