Help for this page

Select Code to Download


  1. or download this
    Table: Categories
    
    id         (primary key)
    parent_id  (foreign key on the id column, set to NULL for the upper-mo
    +st node)
    name       text
    
  2. or download this
    my $dbh = DBI::connect(@connect_values_here);
    get_categories_at( undef );
    ...
        get_categories_at( $hash_ref->{$id}{parent_id} );
      }
    }