in reply to CGI param problem

Use double quotes if you want the variable $co to be interpolated.

my $param = param("para_$co");
And also you can drop that @Co bit too.
foreach my $co (1..2) { my $param = param("para_$co"); do_something($param); }

Replies are listed 'Best First'.
Re: Re: CGI param problem
by LupoX (Pilgrim) on Nov 20, 2003 at 13:09 UTC
    Oh my god...thank you!!!!!!!!!!