package CGI; use strict; sub getparam { my ($self, $what) = @_; return $self->url_param($what) || $self->param($what); } 1;