in reply to Re: searching parameter names
in thread searching parameter names

Thank you,

works great. So to actually retreive the values, I would have to do a little foreach statement and then print the values. Is there a shorter way I can take this concept but instead of storing the names of the paremeters, just store the actual values of all paremeters with the world "hello". That way, I would have one less foreach statement in my code. I'll continue trying to figure it out and if I do, I'll repost it here for future ref.

Replies are listed 'Best First'.
Re^3: searching parameter names
by reasonablekeith (Deacon) on Mar 24, 2006 at 13:23 UTC
    You mean like this?
    my @hello_values = map { $q->param($_) } grep {m/hello/} $q->param(); # untested!
    ---
    my name's not Keith, and I'm not reasonable.