in reply to CGI and why?

It makes for easier debugging to have all of those values in simple scalars. These can be examined easier to see if the values returned are as expected. I can plug in a new value while debugging to see how it affects the script.

--- print map { my ($m)=1<<hex($_)&11?' ':''; $m.=substr('AHJPacehklnorstu',hex($_),1) } split //,'2fde0abe76c36c914586c';

Replies are listed 'Best First'.
Re: Re: CGI and why?
by Sifmole (Chaplain) on Dec 31, 2002 at 21:16 UTC
    You can do that by doing $q->param('varname', 'new value');