in reply to Re^5: Perl CGI checkbox_group submit error
in thread Perl CGI checkbox_group submit error

Hi poj thanks for your reply, but I need to be able to submit an array of values eg. values=>\@array which does not currently work. It will work with -values=>'eenie','meenie','minie','moe', but the former is what I want because of the dynamic values been created in \@array. Any other ideas?

  • Comment on Re^6: Perl CGI checkbox_group submit error

Replies are listed 'Best First'.
Re^7: Perl CGI checkbox_group submit error
by poj (Abbot) on Jul 16, 2013 at 13:27 UTC
    Just work through one change at a time from the working script to the failing one.
    If it works with -values=>['eenie','meenie','minie','moe'], try it with
    use CGI qw/:standard/; my @words = ('eenie','meenie','minie','moe'); print . . -values=>[@words],
    poj