在
HTML表单中,如果我们使用[]给输入框命名,就像这样
<input name="foo[]" type="text" /> <input name="foo[]" type="text" />
在PHP中,我们可以使用$_POST [‘foo’]获取数组中这些输入框的值.
如何在Perl中做类似的事情?我用CGI.pm
解决方法
只需将param的结果赋给数组即可.
my @values = param('foo[]'); # If you use the functional-style my @values = $query->param('foo[]'); # If you use the OO-style of CGI.pm
不要求名称以[]结尾.