Help for this page

Select Code to Download


  1. or download this
    my %products (
        1 => {
    ...
            retail    => "65.00",
       },
    );
    
  2. or download this
    foreach my $key (sort {$a <=> $b} keys %products) {
        print "<br>K|$key| N|$products{$key}{name}| W|$products{$key}{whol
    +esale}| R|$products{$key}{retail}|";
    }
    
  3. or download this
    foreach my $key (sort {$products{retail}{$a} <=> $products{retail}{$b}
    + keys %products) {
        print "<br>K|$key| N|$products{$key}{name}| W|$products{$key}{whol
    +esale}| R|$products{$key}{retail}|";
    }