Help for this page

Select Code to Download


  1. or download this
    [Add Menu]
      Name = L1A
    ...
    -------------------------
    
    etc.. etc..
    
  2. or download this
    $VAR1 = {
              'L1A' => {
    ...
                                     }
                       }
            };
    
  3. or download this
    $VAR1 = [
              {
    ...
                'Title' => 'L1A - L2A - L3B'
              }
            ];
    
  4. or download this
    $Menu_Multi_Hash{'L1A'}{'L2A'} = 'none';
    
    ...
    $Menu_Multi_Hash{'L1A'}{'L2A'}{'L3B'}{'L4A'} = 'exe command';
    
    (please note that the first three elements are the ones arrived by spl
    +itting the 'Title', the fourth is the 'Text' and the right hand side 
    +is the 'Action')
    
  5. or download this
    use Data::Dumper;
    use strict;
    ...
        my($key, $value) = @_;
        $temp_hash{$key} = $value;
    };