Thus spake Perrin Harkins ([EMAIL PROTECTED]):
> CGI.pm uses sticky widgets by default. These are supposed to be cleared
> between requests though, by a cleanup handler that CGI.pm uses. Are you
> using mod_perl 2, by any chance? I think I see a bug in CGI.pm's
Nope. mod_perl 1.27
But... you and Cees are beautiful people. I'd read almost completely
through the CGI.pm documentation, but I didn't remember that it was
significant that each http child only compiles the code once, so these
cgi parameters might stay in memory as new clients hit the children.
A simple $cgi->delete('ipaddress') to delete the value when I create
the field has done the trick. Thanks very much to the both of you.