I'm trying to set a parameter to be passed to the next page via the param function.
I've tried
param(-name=>'foo',-value=>'the value');
param(-name=>'fooz',-values=>['an','array','of','values']);
param('foo3', 1);
My script redirects to another which checks for all (param), but no luck. The CGI manpage implies this should "just work". What am I doing wrong?
Thanks!
-name.$x = -name;sets$xto the string'-name'but%x = (+name => 1)creates a key with the value'name', not'+name'.