in reply to Dynamic CGI Form Processing

Look at my column on sending the entire contents of a web form via email for ideas.

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.


update: Your followup to my note confuses me:
@params=$co->param(); foreach $param (@params){ $p=$co->param($param);
That's nothing I suggested, nor would I suggest, because you're not doing what I said in my column. Just to make it clear to the other readers.

Replies are listed 'Best First'.
Re^2: Dynamic CGI Form Processing
by ctaustin (Sexton) on Jun 15, 2005 at 13:22 UTC
    The params trick did it:
    @params=$co->param(); foreach $param (@params){ $p=$co->param($param); ... ...
    Thanks for the quick replies.