Scott R. Godin wrote:
[snip]
> So if I were to say, override it thusly:
>
> package CGI;
>
> sub STORE {
> my $self = shift;
> my $tag = shift;
> my $vals = shift;
> #my @vals = index($vals,"\0")!=-1 ? split("\0",$vals) : $vals;
> my @vals = @{$vals};
> $self->param
Bob Showalter wrote:
Scott R. Godin wrote:
under what circumstances is the CGI.pm's STORE autoloaded method
called?
is it used only when you assign values to the object, or is it only
used when receiving values (or multi-values) from the webserver query?
It is part of the tied hash interf
Scott R. Godin wrote:
> under what circumstances is the CGI.pm's STORE autoloaded method
> called?
>
> is it used only when you assign values to the object, or is it only
> used when receiving values (or multi-values) from the webserver query?
It is part of the tied hash interface returned by th