Help for this page

Select Code to Download


  1. or download this
    my $refdata = XMLin('C:/myxmltest.xml');
    print ref($refdata) . "\n";            # Prints out HASH
    ...
    foreach my $href ( $refdata->{'Map'} ){
        print $href->{'MapId'} ."\n";
    }