hi,
AFAIK hidden fields will do it if that is what you asking..
now here's aquestion that has been driving me batty.. here goes i hope that i
have been descriptive enough. i have at the top of one of my perl program a
variable that is called.
$Mystuff = $field{'Mystuff'};
#the above contains the values that i want to inject into the open()
#immediately below that i try a ..
my $myparameters = param("Mystuff");
#why because the $Mystuff for some reason does not enter the open();
#i then simply plug further down in a open to a program .. $myparameters and
#it tells me basically that $myparameters is empty.. but i am
#hittinging inside the open();
#..ok so i do immediately do a ..
my $myparameters = $Mystuff
#but now the $myparameters no longer hits the open();
#but a print statement below tihs open() gets 'real values' for the
#$myparameters..
#waht i am trying to do is get $myparameters to equal the $Mystuff and put into
#the open call as real values parameters..
Regards.