Re: Trying to get list/hash of form values with Params

2005-02-06 Thread Joshua Chamas
Quoting mark_mcwiggins <[EMAIL PROTECTED]>: > > I can't get $Request->Params to give me the list of > parameters in a form I can loop through. Can someone > provide an example? > > I've tried variations on > > %params = $Request->Params(); > > foreach $key (keys %params) >

Trying to get list/hash of form values with Params

2005-02-06 Thread mark_mcwiggins
I can't get $Request->Params to give me the list of parameters in a form I can loop through. Can someone provide an example? I've tried variations on %params = $Request->Params(); foreach $key (keys %params) { // etc. } to no avail. Thanks in