Help for this page

Select Code to Download


  1. or download this
    use MIME::Base64;
    
    ...
            my ($q) = shift;
            return split (/\x00/, MIME::Base64::decode($q->path_info()));
    }
    
  2. or download this
    my (%data) = ( 'x' => 'y' );  # etc.
    
    ...
    my ($q) = new CGI;
    
    my (%data) = Uncrush ($q);