in reply to RE: Re: Passing arrays to a CGI
in thread Passing arrays to a CGI
They do nothing of the sort! They are completely unnecessary. This will do just fine:The 'extra' parens around the param() call force list context.@values = (param('foo'));
@values = param 'foo';
-- Randal L. Schwartz, Perl hacker
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: RE: RE: Re: Passing arrays to a CGI
by mkahn (Beadle) on Aug 03, 2003 at 03:55 UTC |