in reply to perl xml parsing

Another way. Change:
$fh_o = Dumper ($data); print $fh_o;
to:
print $fh_o Dumper($data);

Replies are listed 'Best First'.
Re^2: perl xml parsing
by poper12 (Initiate) on May 25, 2012 at 14:46 UTC

    this doesn't work either. I get could not find ParserDetails.ini in C:/Perl/site/lib/XML/SAX

      The documentation for XML::Simple gives you some advice if you search for the string 'SAX':
      $XML::Simple::PREFERRED_PARSER = 'XML::Parser';