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.