in reply to Urgent help needed by inexperienced programmers
As for your questionN -> N. You could duplicate the data from CGI.pm and set it up so that:
Update: The code here is flawed, see Re: Re: Re: Urgent help needed by inexperienced programmers to understand why.
@params = $q->param(); # assuming using OO style of CGI.pm foreach $val @params { if ($val =~ /^question(.+)/) { $$1 = $q->param($val); } }
and now they are accesible via just N, well $N to be fair.
Stick around, and you may see better answers. Remember this is just what first came to my mind.
ALL HAIL BRAK!!!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Urgent help needed by inexperienced programmers
by a (Friar) on Dec 07, 2000 at 05:14 UTC | |
by PsychoSpunk (Hermit) on Dec 07, 2000 at 05:29 UTC |