Re: CGI.pm param question

2002-10-23 Thread Ovid
--- Nikola Janceski <[EMAIL PROTECTED]> wrote: > is there a function that does this or something similar in CGI.pm? > > ## print start_form and other stuff > > print map { hidden($_, param($_)) } param(); # pass remaining info > > ## end form stuff here > > PS. what's the easiest way to pass pa

CGI.pm param question

2002-10-22 Thread Nikola Janceski
is there a function that does this or something similar in CGI.pm? ## print start_form and other stuff print map { hidden($_, param($_)) } param(); # pass remaining info ## end form stuff here PS. what's the easiest way to pass parameters that have more than one value using a similar method abo