in reply to Re: Re: multiple values and CGI.pm
in thread multiple values and CGI.pm

Your first problem is that you didn't use strict. Fixing that will probably give you a big clue about your second problem.

Your "my @values" makes that @values scoped local to the block of the if statement so that your other uses of @values are using a different, undeclared, empty array.

        - tye (but my friends call me "Tye")