Help for this page

Select Code to Download


  1. or download this
    use base 'CGI';
    BEGIN {
    ...
        my($self,$uri) = @_;
        $self->cgi_redirect($uri);
    }
    
  2. or download this
    package BaseA;
    sub func {}
    ...
        $self->BaseA::func(); # same
        $self->BaseB::func(); # only way to access BaseB::func
    }