Help for this page

Select Code to Download


  1. or download this
    Syntax: $category_hash{item_id}{parent_id}{name}
    i.e.
    ...
    $category_hash{2}{1}{name}
    $category_hash{3}{1}{name}
    $category_hash{4}{2}{name}
    
  2. or download this
      foreach my $key (keys %category_hash) {
        $category_dropdown.="<tr><td><a href=\"auction.cgi?category=$key\"
    +>$category_hash{$key}{0}{name}</a></td></tr>";
      }