Help for this page

Select Code to Download


  1. or download this
    %{$tableData{$hashkey}{$hashkey2}} = %tblData;
  2. or download this
    $tableData{$hashkey}{$hashkey2} = \%tblData;
  3. or download this
    my $hashkey2 = $tblData{$key2};
    delete $tblData{$key2};
    $tableData{$hashkey}{$hashkey2} = \%tblData;
    
  4. or download this
    $tableData{$hashkey}{delete $tblData{$key2}} = \%tblData;
  5. or download this
    my @key = grep defined, $key, $key2, $key3;
    
    my %tableData;
    ...
    
        $store_row(\%tblData);
    }