in reply to CGI Question

And to state it a little further, you might do something like:

foreach $field ( @selected ) { @value = $q->param( "$field" ); $value = join( ",", @value ); print "$field: $value\n"; }

Or at least that's how I just did it...

I add the join() in there to tidy up the output a bit.

cheers

Replies are listed 'Best First'.
Re: Re: CGI Question
by kelcey (Initiate) on Jan 05, 2001 at 21:15 UTC
    thanks, that what I come up with