LupoX has asked for the wisdom of the Perl Monks concerning the following question:
Is it not possible to have variables inside the param('xx') function?#!/usr/bin/perl -w use strict; use CGI qw(:standard); my @Co = (1,2); my $co; for $co(@Co) { my $param = param('para_$co'); # <-- ??? do_something($param); } ... ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: CGI param problem
by Roger (Parson) on Nov 20, 2003 at 13:05 UTC | |
by LupoX (Pilgrim) on Nov 20, 2003 at 13:09 UTC | |
|
Re: CGI param problem
by l3nz (Friar) on Nov 20, 2003 at 14:12 UTC |