Help for this page

Select Code to Download


  1. or download this
    $mldb{key}{subkey}[3] = 'stuff';        # won't work
    
  2. or download this
    $tmp = $mldb{key};                      # retrieve value
    $tmp->{subkey}[3] = 'stuff';
    $mldb{key} = $tmp;                      # store value