Help for this page

Select Code to Download


  1. or download this
    my %menu = { info => \@menu_info, sell => \@menu_sell };
    
    ...
    ....
    print $menu{info}[0]; # First thing in the @menu_info array.
    print $menu{sell}[0]; # First thing in the @menu_sell array.
    
  2. or download this
    my $foo = 'info';
    
    print $menu{$foo}[0]; # will print the first item in @menu_info as wel
    +l