in reply to XML Parsing Out of Memory error
If you dump $xml_ref you will find that the structure is not exactly what you think it is, xml_ref->{'QuestionList'} is an array ref, and what you want to display is $xml_ref->{'QuestionList'}->[0]->{'Question'}->{'Answer'};.
And Perl could be more explicit about the error!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: XML Parsing Out of Memory error
by JackHammer (Acolyte) on Feb 28, 2002 at 17:18 UTC | |
by mirod (Canon) on Feb 28, 2002 at 17:37 UTC |