Help for this page

Select Code to Download


  1. or download this
    my @titles = ...; 
    if (@titles == 1) {
    ...
       $BIGLIST{$title[0]}{$titles[1]} = [ @RESTOFFIELDS ];
    }
    ...etc.
    
  2. or download this
    my @titles = ...; 
    my $ref = \%BIGLIST;
    ...
       $ref = \($ref->{$title});
    }
    $ref->{$title[0]} =  [ @RESTOFFIELDS ];