- or download this
#!/usr/bin/perl -w
...
my $t_type = XMLin('tt.xml',GroupTags => { 'seven' => 'select' });
%t_type = \$t_type;
- or download this
### lets test that returned structure
# yep its the same. must be a referrence problem?
print "dumping structure...\n";
print Dumper($t_type);
- or download this
print "data...\n";
...
foreach my $item ( @{$t_type{b}{seven}} ) {
print "... $item->{'select'}\n";
}