use CGI; my $cgi = new CGI; my $our_hash = { 'Cows' => { 'Brown' => undef, 'Green' => undef, 'Strawberry' => { 'Spotted' => undef, 'Solid' => undef }, 'Orange' => undef }, 'Dogs' => { 'Purple' => { 'Spotted' => undef, 'Solid' => undef } } }; use Data::Dumper; print $cgi->header(); print "
##
Content-Type: text/html; charset=ISO-8859-1
Page Title
- Dogs
- Purple
- Spotted
- Solid
- Cows
- Green
- Brown
- Strawberry
- Spotted
- Solid
- Orange
1
####
# Under Construction