Nik has asked for the wisdom of the Perl Monks concerning the following question:
Thank tou all!open(IN, '<movies.txt') or die $!; @tips = <IN>; close(IN); print start_form(-action=>'show.pl'); print table( {border=>1, -width=>'35%', -align=>'center', -style=>'bor +der: ridge lime; color: yellow; font-size: 20', -background=>'../data +/images/blue.jpg'}, Tr( {-align=>'center'}, td( 'Movie X' ), td( popup_menu(-name=>' +dvdX', -values=>[@tips] )), td( submit( 'Pick' ))), Tr( {-align=>'center'}, td( submit( 'Clear' )), td( submit( ' +Done' )))), br(), br(); print table( {border=>1, -width=>'35%', -align=>'center', -style=>'bor +der: ridge lime; color: yellow; font-size: 20', -background=>'../data +/images/blue.jpg'}, Tr( {-align=>'center'}, td( submit( 'Add' )), td( submit( 'Sh +ow' ))), Tr( {-align=>'center'}, td( submit( 'Modify' )), td( submit( 'De +lete' )))); print end_form(), br(), br();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: form problem...
by rdfield (Priest) on Feb 26, 2004 at 12:06 UTC | |
| |
|
Re: form problem...
by Wonko the sane (Curate) on Feb 26, 2004 at 14:12 UTC | |
|