in reply to passing information through hidden fields using CGI.pm

if you're using CGI.pm and the values change, don't forget to delete the old value(s):
my $cgi - CGI->new(); $cgi->delete('foo'); $html .= $cgi->hidden( -name => 'foo', -value => $value );

CGI.pm will append the values, not replace them. i almost got bitten by this earlier today.