http://www.perlmonks.org?node_id=1012236


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

The name doesn't need to change (...) param method, it will return a list of each row you added

Demonstration:

> perl -MCGI=param -E ' say "student=$_" for param("student"); ' student=foo student=bar student=baz student=foo student=bar student=baz >

Note that this is similar to space_monk's functional style example below.

  • Comment on Re^2: How to access an unknown number of CGI variables in a CGI script
  • Download Code