in reply to Re: Re: XML parsing
in thread XML parsing
there are a couple ways to include whatever modules you install in your own space. the one i tend to use for situations like this is:
use qw(/path/to/your/custom/install);
... etc.use lib qw(/path/to/your/custom/install); use XML::Parser;
HTH
Update:
FoxtrotUniform caught that typo. Thanks, FU ;-)
|
|---|