Re: multiple selection

2002-11-23 Thread fliptop
On Fri, 22 Nov 2002 at 15:56, Mike(mickako)Blezien opined: M: @lists = split(/ /,param('list')); from perldoc CGI: FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER: @values = $query-param('foo'); -or- $value = $query-param('foo'); --

Re: multiple selection

2002-11-23 Thread Jason Purdy
~; print end_html(); } else { @lists = param('list'); print qq|Total: @lists|; } exit(); Mikeblezien [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello all, having a problem with processing multiple select

multiple selection

2002-11-22 Thread Mike(mickako)Blezien
Hello all, having a problem with processing multiple selection from a scrolling list... first time working with tha scrolling list. Here is the test script I'm working with: #!/usr/local/bin/perl use CGI qw(:standard); $action = param('action'); print header(); print start_html