in reply to How to access an unknown number of CGI variables in a CGI script

Here you go...
use strict; use warnings; use CGI; # do some other stuff..... # either functional style... my @students = param('student[]'); # OR OO-style... my $query = CGI->new; my @students = $query->param('student[]'); # OR Gangnam-style..... # no just kidding :-) # now process your student input, # remember to check no one is sending you weird data ..... foreach my $student (@students) { # wibble }
A Monk aims to give answers to those who have none, and to learn from those who know more.
  • Comment on Re: How to access an unknown number of CGI variables in a CGI script
  • Download Code

Replies are listed 'Best First'.
Re^2: How to access an unknown number of CGI variables in a CGI script
by prautt (Initiate) on Jan 08, 2013 at 16:56 UTC
    Thanks much! Is it possible to do it without using CGI.pm?

      Thanks much! Is it possible to do it without using CGI.pm?

      Sure, why do you ask?

        Well, I haven't used CGI.pm in my script. I can use it if I need to, but I'm wondering if it's possible to accomplish the above without the use of CGI.pm? Thanks.