Help for this page

Select Code to Download


  1. or download this
    my %data = (
        'main' => 'Top Level',
    ...
             ....
                 )
         ...);
    
  2. or download this
    sub get_catagory_path {
        my @paths = split /\//, $_[0];  # may need to play with leading /
    ...
        }
        return join '/', @catagories;
    }